Hello,
Is there a way in Common Lisp to continue processing data, after the REPL has returned a value - without starting a subprocess.
(defun foo (x y)
(prog1 (+ x y)
(do more processing after (+ x y) has been returned...))
Thank you.
Is there a way in Common Lisp to continue processing data, after the REPL has returned a value - without starting a subprocess.
(defun foo (x y)
(prog1 (+ x y)
(do more processing after (+ x y) has been returned...))
Thank you.