Initial commit

This commit is contained in:
Eric Zhang
2022-04-03 19:58:51 -04:00
commit 3f4cdef248
6 changed files with 109 additions and 0 deletions

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

3
src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("bore cli running");
}