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

12 lines
123 B
OpenEdge ABL
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
software {
var s = ""
if len(s) = 0
print("Empty string!")
end
if s != ""
print("Not an empty string!")
end
}