9 lines
104 B
Text
9 lines
104 B
Text
|
|
decl string s
|
||
|
|
set s ""
|
||
|
|
|
||
|
|
if (= s "")
|
||
|
|
out "empty" endl console
|
||
|
|
else
|
||
|
|
out "not empty" endl console
|
||
|
|
end if
|