mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
19 lines
377 B
Scheme
19 lines
377 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)
|
|
(scheme write)
|
|
(libs lib1)
|
|
;(rename (prefix (libs lib1) test-))
|
|
)
|
|
|
|
(write "hello")
|
|
(newline)
|
|
|
|
(write lib1-test-renamed)
|
|
(newline)
|
|
|
|
(write (lib1-hello))
|
|
(newline)
|
|
|
|
(write "world")
|
|
(newline)
|