/l/Lisp.lsp

http://github.com/leachim6/hello-world · Lisp · 6 lines · 4 code · 1 blank · 1 comment · 0 complexity · 74e448e36bf408791878928090ff425c MD5 · raw file

  1. ; LISP
  2. (DEFUN hello ()
  3. (PRINT (LIST 'HELLO 'WORLD))
  4. )
  5. (hello)