hello-world

This commit is contained in:
Alexander Heldt
2025-10-29 20:09:30 +01:00
parent 47bf569beb
commit 2a39dced2f
9 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import exercism/should
import exercism/test_runner
import hello_world
pub fn main() {
test_runner.main()
}
pub fn say_hi_test() {
hello_world.hello()
|> should.equal("Hello, World!")
}