RosettaCodeData/Task/Empty-string/Nyquist/empty-string-2.nyquist
2023-07-01 13:44:08 -04:00

6 lines
173 B
Text

define variable emptystring = "" ;binds variable'emptystring' to the empty string ""
if emptystring = "" then
print "is empty string"
else
print "is not empty string"