A small Lisp written in Rust.
(print "Hello World")
(set 'name "Pebaz")
(prin "Hello ")
(print name)
git clone https://github.com/Pebaz/LambdaCore
cd LambdaCore
cargo build --release
# Launch the REPL
./lambda_core
# Run a source file
./lambda_core -f some-file.lcore
# Run a code snippet
./lambda_core -c '(print "Hello World")'
- Examples: https://github.com/Pebaz/LambdaCore/tree/master/examples
- Tutorials: https://sites.google.com/view/lcore
- Documentation: https://github.com/Pebaz/LambdaCore/wiki
- Downloads: https://github.com/Pebaz/LambdaCore/releases