Artifact 1b713265c6ac76cf2836a4808fdfc84e6cd8dc72:
- File testbuild/cl.scm — part of check-in [49214f61e2] at 2021-11-13 21:17:57 on branch v1.6584-nanomsg — Added minimal example of how build works (user: matt, size: 225) [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")) ) (import cl-guts) (main)