fork download
  1. (defun main ()
  2. (hello)) ; OK
  3.  
  4. (defun hello ()
  5. (format t "Hello World!~%"))
  6.  
  7. (main)
Success #stdin #stdout 0s 23612KB
stdin
Standard input is empty
stdout
Hello World!