15 lines
172 B
OpenEdge ABL
15 lines
172 B
OpenEdge ABL
|
|
software {
|
||
|
|
if true
|
||
|
|
print("this prints")
|
||
|
|
end
|
||
|
|
if 1
|
||
|
|
print("this prints")
|
||
|
|
end
|
||
|
|
if false
|
||
|
|
print("this does not print")
|
||
|
|
end
|
||
|
|
if 0
|
||
|
|
print("this does not print")
|
||
|
|
end
|
||
|
|
}
|