cyclone/examples/hello-library/hello.scm
Justin Ethier 9b1b833b89 WIP
2015-05-18 22:11:56 -04:00

11 lines
304 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")