Welcome to the CHICKEN Scheme pasting service
modules added by iterrogo on Sun Nov 16 01:50:44 2014
; fu.scm (module fu (hello) (import chicken scheme) (define (hello) (print "hello!")) ) ; bar.scm (import chicken scheme) (load "fu") (import fu) (hello)