Remove placeholder generated lib content

This commit is contained in:
Jarrod Doyle 2023-09-18 21:48:54 +01:00
parent 7de381d911
commit a8c7655637
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 0 additions and 15 deletions

View File

@ -3,18 +3,3 @@ pub mod math;
pub mod plane; pub mod plane;
pub use glam; pub use glam;
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);
}
}