[ prog / sol / mona ]

prog


Marvin Minsky - The Beauty of the Lisp Language

149 2020-10-11 02:05

Guile offers us this glimpse of Lisp's inherent and unquestionable beauty:

(use-modules (ice-9 local-eval))

(define (openFuture state)
   (local-eval '(display state)
     (let ((state state)) (the-environment))))

(openFuture '?)
301


VIP:

do not edit these