Ikarus Scheme (Bazaar checkout)
Go to file
Abdulaziz Ghuloum cfc1fcdb37 * Added a --script option to ikarus. If --script is passed as an
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
     $
2006-12-02 05:28:11 -05:00
bin rebuilt 2006-12-01 11:18:23 -05:00
lib * Added a --script option to ikarus. If --script is passed as an 2006-12-02 05:28:11 -05:00
.bzrignore manually fixed bzr-ignore file 2006-12-01 10:17:08 -05:00
README added a top-level README 2006-11-23 20:02:07 -05:00

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.