RosettaCodeData/Task/Conditional-structures/Objeck/conditional-structures-1.objeck

11 lines
152 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a := GetValue();
if(a < 5) {
"less than 5"->PrintLine();
}
else if(a > 5) {
"greater than 5"->PrintLine();
}
else {
"equal to 5"->PrintLine();
};