var std = import "std"; var print = std.print; func main() { match 2 { 1 -> { print("One") } 2 -> { print("Two") } } }