simulator

This commit is contained in:
Jesenko, Jakob 2025-12-07 21:46:10 +01:00
parent 6d722acba9
commit a9323bb7d9
10 changed files with 459 additions and 0 deletions

13
sim/test/sim_test.gleam Normal file
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!"
}