Megatest

m1.scm at [49214f61e2]
Login

File testbuild/m1.scm artifact 624c900b71 part of check-in 49214f61e2


;; a module used by both command line (cl.scm) and gui (gui.scm)

(declare (unit m1))

(module m1
	*

(import scheme
	chicken.base
	)

(define (a)
  (print "I'm from module m1"))

)