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

10 lines
168 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
if (c1) {
// first condition is true...
} elif (c2) {
// second condition is true...
} elif (c3) {
// third condition is true...
} else {
// none was true...
}