logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

sisc - Second Interpreter of Scheme Code

Author

SISC was created by Scott G. Miller (sgmiller@gmail.com)  with  significant  contribution  from  Matthias
       Radestock (matthias@sorted.org).

4th Berkeley Distribution                           June 2005                                            SISC(1)

Bugs

       Submit bug reports to the SISC Users Mailing List.

Command Line Behavior

       The commandline is processed in the following manner.

       First, the entire command line is processed, noting the settings of  each  switch  and  accumulating  all
       Scheme source files and arguments after the end of options sequence.

       Second, the heap file is loaded.

       Third, each Scheme source file is loaded in the order they occured on the command line. Errors are noted.

       Fourth, if present, the expression in an --eval switch is evaluated. Errors are noted.

       Fifth,  if present, named function in a --call-with-args switch is applied to the arguments after the end
       of options sequence.  Its return value is noted.

       Sixth, --no-repl was not specified, the REPL is invoked.

       Finally, if the REPL was run if its return value is an  integer,  that  integer  is  returned  as  SISC's
       overall return code. If the REPL was not run, and any return code supporting step above was run, the most
       recent  return  code  is  returned.  If no return code step was performed, but a success/failure step was
       performed, 1 is returned if any failures occured, 0 otherwise.

Description

SISC,  the  Second  Interpreter  of  Scheme  Code,  is an extensible Java based interpreter of the Scheme
       language as described in the Revised^5ReportontheAlgorithmicLanguageScheme  and  adds  numerous
       extensions including Java integration.

Executable Scripts

       SISC supports all the required SRFI‐22 bootstraps, consult the body of SRFI‐22 for more information about
       using it to write executable Scheme programs.

More Information

       For further information on SISC, please read the SISCforSeasonedSchemers manual available at

                                          http://sisc.sourceforge.net/manual/

Name

       sisc - Second Interpreter of Scheme Code

Startup File And Expression Options

-cname--call-with-argsname
              Calls  the  top‐level  procedure  name  with  the  remaining  command‐line  arguments after the --
              delimiter.

       -eexpr--evalexpr
              Evaluates the provided expression.

       -x--no-repl
              Instructs SISC to run the command line and then exit without entering the REPL.

       -hheap‐file--heapheap‐file
              Specifies that heap-file should be used as the initial heap image.

       -pconfig‐file--propertiesconfig‐file
              Specifies a Java property file that contains application properties.

       -l[<host>:]<port>--listen[<host>:]<port>
              Server Mode.  Listen on <host>/<port> for REPL connections.

Synopsis

sisc [ option...  ] [ argument...  [ -- [ program‐option ...  ] ]

See Also