7 lines
173 B
Text
7 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"
|