RosettaCodeData/Task/Empty-string/Nyquist/empty-string-2.nyquist

7 lines
173 B
Plaintext

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