Start of aaaa

This commit is contained in:
2024-05-21 18:36:13 +02:00
parent d6e2c26943
commit fcc4f44a17
9 changed files with 178 additions and 11 deletions

12
test/gleamish_test.gleam Normal file
View File

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