Lisp is an open source programming language created in 1958 by John McCarthy.
#34on PLDB | 66Years Old |
Lisp (historically, LISP) is a family of computer programming languages with a long history and a distinctive, fully parenthesized prefix notation. Originally specified in 1958, Lisp is the second-oldest high-level programming language in widespread use today. Only Fortran is older, by one year. Read more on Wikipedia...
; LISP
(DEFUN hello ()
(PRINT (LIST 'HELLO 'WORLD))
)
(hello)
(defun -reverse (list)
(let ((return-value '()))
(dolist (e list) (push e return-value))
return-value))
Feature | Supported | Example | Token |
---|---|---|---|
Print() Debugging | ✓ | ||
Homoiconicity | ✓ | ||
Garbage Collection | ✓ | ||
Case Insensitive Identifiers | X |