init gleam code

This commit is contained in:
Travis Shears 2026-03-23 12:47:53 +01:00
parent edc815842e
commit 7149273986
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
9 changed files with 112 additions and 3 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!"
}