module problem added by x1n4u on Sun Aug 30 16:06:12 2015

;;hello.scm

(module test (hello)
  (import scheme)

    ;;(define-syntax greet					
	;; (syntax-rules ()
	;;   ((_ whom)
	;;    (begin
	;; 	 (display "Hello, ")
	;; 	 (display whom)
	;; 	 (display "!\n")))))

  (define (hello)
	(print "World")))