How to make executable File using Gambit
问题 I wrote this Scheme source file on notepad. I have gambit scheme installed. (define hello-world (lambda () (begin (write ‘Hello-World) (newline) (hello-world)))) I use windows command line. i type in 'gsc hello.scm' in the command line. It spits out a file on my desktop called "hello.o2". I want to see "Hello-World" pop up on my command line. For example, when I compile stuff in c++ it gives me a file called a.exe and I am able to observe it on the command line. how can I do this with the