argument, then the greeting is suppressed and no cafe is entered.
* Example 1 (non-script): script.ss contains
#!/usr/bin/ikarus
(display "Hello Script\n")
$ ./script.ss
Ikarus Scheme (Build 2006-12-02)
Copyright (c) 2006 Abdulaziz Ghuloum
Hello Script
>
* Example 2 (script): script.ss contains
#!/usr/bin/ikarus --script
(display "Hello Script\n")
$ ./script.ss
Hello Script
$
|
||
|---|---|---|
| bin | ||
| lib | ||
| .bzrignore | ||
| README | ||
README
Ikarus Scheme Source Directory
Simplified Contents:
runtime: Contains the C files making the ikarus executable. The C
files implement the GC, initial FASL loader, transport
guardians, weak pairs, the symbol table, etc.
src: Contains the Scheme source files for the compiler and the
rest of the development environment.