init gleam

This commit is contained in:
41666 2025-04-29 18:19:33 -07:00
parent ac8220c015
commit f941e6902e
10 changed files with 176 additions and 42 deletions

View file

@ -0,0 +1,12 @@
import gleeunit
import gleeunit/should
pub fn main() -> Nil {
gleeunit.main()
}
// gleeunit test functions end in `_test`
pub fn hello_world_test() {
1
|> should.equal(1)
}