advent-of-code/2022/test/advent_of_code_test.gleam
2022-12-01 17:01:32 +10:00

12 lines
174 B
Gleam

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)
}