RosettaCodeData/Task/Conditional-structures/Aime/conditional-structures.aime

10 lines
168 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if (c1) {
// first condition is true...
} elif (c2) {
// second condition is true...
} elif (c3) {
// third condition is true...
} else {
// none was true...
}