RosettaCodeData/Task/Conditional-structures/Objeck/conditional-structures-2.ob...

15 lines
179 B
Plaintext

a := GetValue();
select(a) {
label 5: {
"equal to 5"->PrintLine();
}
label 7: {
"equal to 7"->PrintLine();
}
other: {
"another value"->PrintLine();
}
};