Skip to content

imbaczek/toylisp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Toy lisp

This is an attempt at a very simple Lisp (or maybe Scheme, not sure yet). Currently the only working things are '+', 'def' and ints. Examples:

>>> (def foo (+ 1 2 3 4))
result: Ok(Int(10))
>>> (+ foo 1)
result: Ok(Int(11))

...so it's a barely functional calculator ATM. I learned a whole lot about Rust, though, especially about mixing boxes with values/guards/cells/etc. Thanks to #rust for that.

About

A toy lisp hobby project.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages