var m = module var x = 32 var y = "bim" fun add(x, y) return x + y end end assert m::x eq 32 assert m::y eq "bim" assert m::add(7, 2) eq 9