fork download
  1. (defun test ()
  2. (print "OP HUI"))
  3.  
  4. (defun run-shell ()
  5. (loop
  6. for cmd = (read-line)
  7. until (string= cmd "quit")
  8. do (funcall (symbol-function (intern (string-upcase cmd))))
  9. (terpri)))
  10.  
Success #stdin #stdout 0s 10512KB
stdin
Standard input is empty
stdout
Standard output is empty