RosettaCodeData/Task/Empty-string/I/empty-string.i
2016-12-05 23:44:36 +01:00

11 lines
123 B
OpenEdge ABL

software {
var s = ""
if len(s) = 0
print("Empty string!")
end
if s != ""
print("Not an empty string!")
end
}