RosettaCodeData/Task/Conditional-structures/I/conditional-structures.i

13 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
}