Re: [Chicken-users] how do i load a module? none of the docs seem to help... :(

2019-08-09 Thread Evan Hanson
Hi Kay, On 2019-08-09 17:19, masukomi wrote: > I then generate `hello.import.scm` and `hello.so` with `csc` > > What _exactly_ do i need to put in code in order to import the `hello` > module in such a way that when I compile the thing importing it with > `csc -static thing-importing-hello.scm` I

[Chicken-users] how do i load a module? none of the docs seem to help... :(

2019-08-09 Thread masukomi
given the following simple module: ```scheme ; hello.scm (module hello (greet) (import chicken) (import scheme) (define (greet) (print "hello world"))) ``` I then generate `hello.import.scm` and `hello.so` with `csc` What _exactly_ do i need to put in code in order to import the `hell