compiler: init

This commit is contained in:
Ryan Chandler 2022-08-11 17:20:00 +01:00
parent 0531ed39b9
commit 241eca2fb4
No known key found for this signature in database
GPG Key ID: F113BCADDB3B0CCA
3 changed files with 12 additions and 0 deletions

View File

@ -5,4 +5,5 @@ members = [
"trunk_value",
"trunk_interner",
"trunk_gc",
"trunk_compiler"
]

View File

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

View File

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