File testbuild/cl.scm artifact c850e4c5f3 part of check-in b4ff9e2f1d
;; a command line only executable (declare (uses m1)) (declare (uses m2)) (module cl-guts * (import scheme chicken.base m1 m2) (define (main) (a) (b) (print "I'm main from cl.scm") (print "Got "(try-an-eval)" from try an eval")) ) (import cl-guts) (main)