Downloading JScheme

The simplest way to download Jscheme is to download the single jar file, jscheme.jar.

You can also download the sources and compile. We'll add this capability shortly.

Once jscheme.jar is downloaded, you can put it in your classpath, and run it as an interpreter:

  % java jscheme.REPL
  > (display (* 12345679 8))
  98765432'
  > (exit)
  %
or as a Scheme->Java compiler:
  % cat > Hello.scm
  (display "Hello World") (newline)
  ^D
  % java jsint.Compile Hello.scm
  % javac Hello.java
  % java Hello
  Hello World
  %