12 lines
123 B
OpenEdge ABL
12 lines
123 B
OpenEdge ABL
|
|
software {
|
||
|
|
var s = ""
|
||
|
|
|
||
|
|
if len(s) = 0
|
||
|
|
print("Empty string!")
|
||
|
|
end
|
||
|
|
|
||
|
|
if s != ""
|
||
|
|
print("Not an empty string!")
|
||
|
|
end
|
||
|
|
}
|