RosettaCodeData/Task/Empty-string/I/empty-string.i

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
}