modules added by Kucuq on Fri Apr 27 12:45:23 2012

(module a
	( method)
	(import chicken scheme)
	(define (method a)
		(+ a 10)))



(module b
	(addtwelfe)
	(import chicken scheme)
	(use a)
	(define (addtwelfe x)
		(method (+ x 2))))


;; csi
;; (load "modules.scm") 
;; Error: (require) cannot load extension: a