init
test / test (push) Has been cancelled

This commit is contained in:
2026-07-18 02:54:42 +02:00
commit 4a908f4f3e
8 changed files with 193 additions and 0 deletions
+13
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!"
}