How do you run Scheme programs from the terminal in linux(ubuntu)? Also how to accept arguments from the command-line in a Scheme program?
Edit: Im using the DrScheme implementation.
|
3
|
How do you run Scheme programs from the terminal in linux(ubuntu)? Also how to accept arguments from the command-line in a Scheme program? Edit: Im using the DrScheme implementation.
|
|||
|
|
|
|
The DrScheme scheme implementation, and the name you use to execute it from the command line, is The upshot is that you can use shebang scripts like this:
or if you want more control over the command line flags for
The function you use to process command line args is |
||
|
|
|
It is not standardized in the R6RS. There is a recommendation SRFI-22, which some interpreters support. If your interpreter does not support SRFI-22 then it depends on your implementation. Below is an example from the SRFI. It assumes your interpreter is a binary named scheme-r5rs. Basically it calls a function named main with a single arg that is a list of command line args.
|
||
|
|
|
|
The R6RS library defines a function called
It depends on which implementation of Scheme you're using. |
||
|
|