1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 05:17:37 +00:00

feat: init blvm

This commit is contained in:
Natapat Samutpong 2022-01-26 09:27:01 +07:00
parent 17981acc49
commit 1d8d4a5bdd
3 changed files with 21 additions and 0 deletions

8
blvm/Cargo.toml Normal file
View file

@ -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]

3
blvm/src/main.rs Normal file
View file

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

10
bobbylisp.code-workspace Normal file
View file

@ -0,0 +1,10 @@
{
"folders": [
{
"path": "blspc"
},
{
"path": "blvm"
}
]
}