RosettaCodeData/Task/Empty-string/Zoomscript/empty-string.zoom

8 lines
120 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var string
string = ""
if eq string ""
2026-02-01 16:33:20 -08:00
print "The string is empty."
2023-07-01 11:58:00 -04:00
else
2026-02-01 16:33:20 -08:00
print "The string is not empty."
2023-07-01 11:58:00 -04:00
endif