Skip to content

Lisp Interpreter Version 4.0

Compare
Choose a tag to compare
@Christian-2003 Christian-2003 released this 15 Apr 15:50
· 24 commits to main since this release
697e4d6

1. The Lisp Interpreter:

Hello folks. This release represents the newest version of my Interpreter for Lisp.
For further information on the Lisp syntax, look up the wiki.



2. How to use the Interpreter:

This should represent a step by step tutorial, on how to use my Lisp Interpreter.

1. Download:

Download the Lisp Interpreter. You can find the current version in the attachment of this release.

2. Execute the .jar-file:

After downloading the .jar-file, follow the following steps:

  1. Open the cmd. For that, you can use windows' search function.
  2. Execute the .jar-file through the terminal: For that, type java -jar <directory>LispInterpreter.jar. You have to incorporate the directory, in which the LispInterpreter.jar is located, instead of the <directory>!
  3. After that, the LispInterpreter should be executed successfully. The Interpreter requests you to input a file, in which the source code is located. Enter the file name including the directory in which it's located. An example might be: c:/user/documents/code.lsp. In this case, the code.lsp-file must contain the lisp source code.
  4. If you have entered the file name correctly, the interpreter should execute the source code.