Add parser module

This commit is contained in:
Greg Shuflin 2024-04-23 18:03:27 -07:00
parent b44fda3283
commit 57a0d0a603
4 changed files with 16 additions and 0 deletions

4
Cargo.lock generated
View File

@ -9,3 +9,7 @@ version = "0.1.0"
[[package]]
name = "schala-main"
version = "0.1.0"
[[package]]
name = "schala-parser"
version = "0.1.0"

View File

@ -1,6 +1,7 @@
[workspace]
members = [
"schala-main",
"schala-parser",
"experiments",
]
resolver = "2"

8
schala-parser/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "schala-parser"
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!");
}