The parser.hs is the whole program, it's compiled to a REPL environment.
The stdlib.scm is a minimal standard library for the interpreter, it has some essential functions defined within it.
$ make
No installation is required.
-
Enter the REPL environment, you can enter code line by line in it.
$ ./scheme Lisp>>>
-
Evaluate a source file
$ ./scheme source.scm
-
Load a library
Lisp>>> (load "stdlib.scm")