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/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);
}
}