cyclone/examples/hello-library/hello.scm
2015-05-15 14:27:10 -04:00

11 lines
302 B
Scheme

; TODO: just adding temporarily until import is supported.
; idea is to try and see how the C code needs to change to
(import (scheme base)
(libs lib1)
;(rename (prefix (libs lib1) test-))
)
(write "hello")
;(test-lib1-hello)
(write lib1-hello)
(write "world")