Megatest

m2.scm at [49214f61e2]
Login

File testbuild/m2.scm artifact 9e9aa983e6 part of check-in 49214f61e2


;; a module used only by the command line executable
;;
(declare (unit m2))

(module m2
	*

(import scheme
	chicken.base
	)

(define (b)
  (print "I'm from module m2"))

)