RosettaCodeData/Task/Empty-string/Zoomscript/empty-string.zoom
2026-02-01 16:33:20 -08:00

7 lines
120 B
Text

var string
string = ""
if eq string ""
print "The string is empty."
else
print "The string is not empty."
endif