Rlisp

experimental lisp interpreter in rust

The goal of this project is to learn Rust basics and able to run follwing snippet only.

```lisp (let name "Mohsen")

(let marks (4 5 6))

(print name)

(print (+ marks))

```