chore: init lang crate

This commit is contained in:
rvcas
2022-08-02 19:43:19 -04:00
parent db5695a1c4
commit e74eace15c
4 changed files with 21 additions and 1 deletions

8
crates/lang/Cargo.toml Normal file
View File

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

8
crates/lang/src/lib.rs Normal file
View File

@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}