8 lines
124 B
Text
8 lines
124 B
Text
|
|
let string$=""
|
||
|
|
if string$=""
|
||
|
|
print 1 "The string is empty."
|
||
|
|
elseif string$<>""
|
||
|
|
print 1 "The string is not empty."
|
||
|
|
endif
|
||
|
|
end
|