diff --git a/blvm/Cargo.toml b/blvm/Cargo.toml new file mode 100644 index 0000000..fa8a3af --- /dev/null +++ b/blvm/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "blvm" +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/blvm/src/main.rs b/blvm/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/blvm/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/bobbylisp.code-workspace b/bobbylisp.code-workspace new file mode 100644 index 0000000..7d8843c --- /dev/null +++ b/bobbylisp.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "blspc" + }, + { + "path": "blvm" + } + ] +} \ No newline at end of file