From 679eb3867c739360d97ca191d950597d4e25bb36 Mon Sep 17 00:00:00 2001 From: teo3300 Date: Thu, 1 Jun 2023 21:37:45 +0200 Subject: [PATCH] Initial commit Signed-off-by: teo3300 --- .gitignore | 1 + Cargo.toml | 8 ++++++++ README.md | 7 +++++++ 3 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c3c543b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rust-mal" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..056a0da --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# rust-mal + +Trying and implementing [mal](github.com/kanaka/mal) project from [kanaka](github.com/kanaka) in Rust + +## Why + +Because I need to improve my knowledge of rust and I also don't know how to use lisp