WIP, libraries not working yet

This commit is contained in:
Justin Ethier 2015-05-15 14:27:10 -04:00
parent ec05705ae1
commit e536a13ea7
2 changed files with 4 additions and 1 deletions

View file

@ -5,5 +5,7 @@
;(rename (prefix (libs lib1) test-))
)
(write "hello")
;(test-lib1-hello)
(write lib1-hello)
(write "world")

View file

@ -14,4 +14,5 @@
(define (internal-func)
(write lib2-hello))
(define (lib1-hello)
(internal-func))))
(internal-func)
1)))