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

10 lines
136 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
switch x {
2023-07-01 11:58:00 -04:00
case true:
2024-07-13 15:19:22 -07:00
if y > 100 {
2023-07-01 11:58:00 -04:00
fallthrough
} else {
120
}
case false: ...
}