garritfra / lisp-compiler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple Lisp Compiler

This Compiler is implemented in Rust.

CLI Roadmap

Accessing a REPL

root@linux:~$ lipsy
lipsy> (+ 2 5)
7
lipsy>

List all available Commands

root@linux:~$ lipsy --help

Evaluating a statement

root@linux:~$ lipsy -e "(+ 1 2)"
3
root@linux:~$ lipsy --evaluate "(* 2 5)"
25
root@linux:~$

Interpreting a file

root@linux:~$ lipsy addTwoAndSeven.lips
9
root@linux:~$

About


Languages

Language:Rust 100.0%