Updated README.
[scheme.forth.jl.git] / examples / metacirc.scm
index a1ad1dd..fe4c965 100644 (file)
@@ -2,6 +2,8 @@
 ;; Mandatory SICP Metacircular Evaluator ;;
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
+;; To use, simply (load "metacirc.scm") and run the (driver-loop) command.
+
 (define apply-in-underlying-scheme apply)
 (define true #t)
 (define false #f)
 
 
 (define the-global-environment (setup-environment))
-
-(driver-loop)