mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
feat: init blvm
This commit is contained in:
parent
17981acc49
commit
1d8d4a5bdd
8
blvm/Cargo.toml
Normal file
8
blvm/Cargo.toml
Normal 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
3
blvm/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
10
bobbylisp.code-workspace
Normal file
10
bobbylisp.code-workspace
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "blspc"
|
||||
},
|
||||
{
|
||||
"path": "blvm"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue