RosettaCodeData/Task/Conditional-structures/I/conditional-structures.i
2023-07-01 11:58:00 -04:00

12 lines
153 B
OpenEdge ABL

//'i' supports if, else, and else if
software {
a = 3
if a = 3
print("a = three")
else if a = 2
print("a = two")
else
print("a = ", a)
end
}