RosettaCodeData/Task/Conditional-structures/Lisaac/conditional-structures-3.lisaac
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

13 lines
138 B
Text

+ n : INTEGER;
n := 3;
n
.when 2 then {
"n is 2\n".print;
}
.when 3 then {
"n is 3\n".print;
}
.when 4 then {
"n is 4\n".print;
};