mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
6 lines
158 B
Scheme
6 lines
158 B
Scheme
(define-library (libs lib2)
|
|
;(import (scheme base))
|
|
(export lib2-hello)
|
|
(begin
|
|
(define lib2-hello
|
|
"Hello from library #2")))
|