first commit

This commit is contained in:
markgerrard
2026-03-17 20:44:57 +00:00
commit e9354a7920
49 changed files with 1529 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
pub fn reply(guess: Int) -> String {
case guess {
i if i < 41 -> "Too low"
i if i > 43 -> "Too high"
41 | 43 -> "So close"
42 -> "Correct"
_ -> "WAT"
}
}