Light of day

This commit is contained in:
Alexander Heldt
2025-11-09 15:35:21 +01:00
commit 8bbfae4592
10 changed files with 137 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!"
}