RosettaCodeData/Task/Conditional-structures/Objeck/conditional-structures-1.objeck
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
152 B
Text

a := GetValue();
if(a < 5) {
"less than 5"->PrintLine();
}
else if(a > 5) {
"greater than 5"->PrintLine();
}
else {
"equal to 5"->PrintLine();
};