Initial commit

This commit is contained in:
Greg Shuflin 2024-05-10 02:56:05 -07:00
commit 270cf66d82
4 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "lisp-implementation"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Lisp Implementation
This is a Rust lisp implementation inspired by https://chialisp.com/chialisp-primer/intro/

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}