[ prog / sol / mona ]

prog


Marvin Minsky - The Beauty of the Lisp Language

144 2020-10-10 23:26

(setq state 1)
(defun openFuture (state)
(eval '(print state)))
(openFuture 't)

result: 1

(setq state 1)
(defun openFuture (state)
(eval (print state)))
(openFuture 't)

Result: T

(setq state 1)
(defun openFuture (state)
(eval '(eval (print state))))
(openFuture 't)

Result: 1

301


VIP:

do not edit these