[ prog / sol / mona ]

prog


Marvin Minsky - The Beauty of the Lisp Language

127 2020-10-10 21:22

>>126
Its because you quote the expr, making it a string.
Its eval("string of something"), so the argument isn't passed to it.
you probably want
(defun openFuture (state)
(eval `(print ,state)))
which is equivalent to eval(`print ${state}`) in javascript

301


VIP:

do not edit these