First commit
test / test (push) Has been cancelled

This commit is contained in:
Nate Anderson
2026-01-23 13:48:04 -07:00
commit ba3696e207
11 changed files with 254 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!"
}