fork download
  1. (defun helloworld ()
  2. (format t "Hello, world"))
  3.  
  4. (defun A ()
  5. (B #'helloworld))
  6.  
  7. (defun B (fn)
  8. (C fn))
  9.  
  10. (defun C (fn)
  11. (funcall fn))
  12.  
  13. (A)
Success #stdin #stdout 0s 10512KB
stdin
Standard input is empty
stdout
Hello, world