Artifact 8ea5c044bcba74dd9519130c65b7e62f14ebbf11:
- File testbuild/gui.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: 253) [annotate] [blame] [check-ins using]
;; a command line only executable (declare (uses m1)) (declare (uses m3)) (module gui-guts * (import scheme chicken.base m1 m3 ) (define (main) (a) (c) (print "I'm main from cl.scm, let's start a gui ...") ) ) (import gui-guts) (main)