spook

A "game" for the 2023 Autumn Lisp Game Jam. Won first place! (from the bottom...)
git clone https://kaka.farm/~git/spook
Log | Files | Refs | LICENSE

chicken-spock.scm (294B)


      1 ;;;; chicken-spock.scm - command-line compiler
      2 
      3 
      4 (module main ()
      5 
      6 (import scheme (chicken base) (chicken process-context))
      7 (import spock-compiler matchable)
      8 
      9 (define fail error)
     10 
     11 (include "top.scm")
     12 
     13 (set! ##sys#warnings-enabled #f)	; disable reader warnings
     14 
     15 (run (command-line-arguments))
     16 
     17 )