rhea/assets/examples/match.rhea

10 lines
195 B
Plaintext
Raw Permalink Normal View History

2023-09-07 08:56:15 -05:00
var std = import "std";
var print = std.print;
func main() {
match 2 {
1 -> { print("One") }
2 -> { print("Two") }
2023-09-21 12:42:13 -05:00
// If there is not a matching case continue
2023-09-07 08:56:15 -05:00
}
}