Create project

This commit is contained in:
Joscha 2022-02-07 00:19:19 +01:00
commit 0c9f5e91a3
9 changed files with 55 additions and 0 deletions

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