initial local commit
Some checks failed
test / test (push) Has been cancelled

This commit is contained in:
2025-10-09 00:32:02 +01:00
parent f80088feff
commit 9961cce70d
7 changed files with 365 additions and 1 deletions

13
test/glxml_test.gleam Normal file
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!"
}