commit message

This commit is contained in:
jakob 2026-01-15 19:29:35 +01:00
parent 24455d9eb8
commit 01679fd252
14 changed files with 410 additions and 1 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!"
}