Created
January 11, 2013 07:58
-
-
Save liancheng/4508801 to your computer and use it in GitHub Desktop.
Chibi Scheme libirary sample. Put sample.scm and sample.sld under the same directory, then run `chibi-scheme sample.scm`.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(import (sample)) | |
(hello-world) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-library (sample) | |
(import (scheme base) | |
(scheme write)) | |
(export hello-world) | |
(begin | |
(define (hello-world) | |
(write "hello world") | |
(newline)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment