finish testing

- convert project to a library by moving program logic into lib.rs
- create ./tests to store integration tests
- create ./common to store code we want shared across integration tests
This commit is contained in:
2026-01-19 08:01:27 +00:00
parent b287268919
commit b8c7b5e68b
4 changed files with 204 additions and 177 deletions

View File

@@ -0,0 +1,3 @@
pub fn give_me_5() -> usize {
5
}