Skip to content
Henry00572 edited this page Oct 17, 2022 · 1 revision

Lisp

Lisp is a functional programming language which means that any code is implemented by functions acting on data. In Lisp data is always stored in lists. Even the syntax of programms follows a list structure. This means that code and data are basically the same thing, and so code can be manipulated at runtime by other code and executed at the right time. This feature is called "homoiconicity".

Clone this wiki locally