Differences From Artifact [8ea5c044bc]:
- 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]
To Artifact [4b166181e3]:
- File testbuild/gui.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: 325) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + - + | ;; a command line only executable (declare (uses m1)) (declare (uses m2)) (declare (uses m3)) (module gui-guts * (import scheme chicken.base m1 m2 m3 ) (define (main) (a) (c) (print "I'm main from cl.scm, let's start a gui ...") |