RosettaCodeData/Task/Conditional-structures/Langur/conditional-structures-6.langur

10 lines
138 B
Text
Raw Permalink Normal View History

2024-03-06 22:25:12 -08:00
switch .x {
2023-07-01 11:58:00 -04:00
case true:
if .y > 100 {
fallthrough
} else {
120
}
case false: ...
}