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