Initial commiInitial commit

This commit is contained in:
nora 2022-06-21 07:21:58 +02:00
commit 594d491979
5 changed files with 34 additions and 0 deletions

14
parser/src/lib.rs Normal file
View file

@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}