Project init

This commit is contained in:
April Eaton 2025-12-01 18:35:13 +01:00
commit a684fbe591
11 changed files with 257 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import gleeunit
pub fn main() -> Nil {
gleeunit.main()
}
// gleeunit test functions end in `_test`
pub fn hello_world_test() {
let name = "Joe"
let greeting = "Hello, " <> name <> "!"
assert greeting == "Hello, Joe!"
}