rhea/assets/examples/match.rhea

10 lines
195 B
Plaintext
Raw Permalink Normal View History

2023-09-14 10:35:11 -05:00
var std = import "std";
var print = std.print;
func main() {
match 2 {
1 -> { print("One") }
2 -> { print("Two") }
2023-10-02 17:16:27 -05:00
// If there is not a matching case continue
2023-09-14 10:35:11 -05:00
}
}