Artifact c850e4c5f3f2ac15ac6f67268d229fcb91634890:
- File testbuild/cl.scm — part of check-in [39f1ace0d3] at 2021-11-14 15:33:22 on branch v1.6584-nanomsg — Added -M to obj build to fix issue with dashboard not starting (user: matt, size: 274) [annotate] [blame] [check-ins using]
;; 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)