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

7 lines
173 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
define variable emptystring = "" ;binds variable'emptystring' to the empty string ""
if emptystring = "" then
print "is empty string"
else
print "is not empty string"