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

10 lines
96 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
if x == 0 {
2023-07-01 11:58:00 -04:00
...
2024-07-13 15:19:22 -07:00
} else if x > 0 {
val y = 100
2023-07-01 11:58:00 -04:00
...
} else {
2024-07-13 15:19:22 -07:00
val y = 70
2023-07-01 11:58:00 -04:00
...
}