15 lines
228 B
Text
15 lines
228 B
Text
sequence s
|
|
|
|
-- assign an empty string
|
|
s = ""
|
|
|
|
-- another way to assign an empty string
|
|
s = {} -- "" and {} are equivalent
|
|
|
|
if not length(s) then
|
|
-- string is empty
|
|
end if
|
|
|
|
if length(s) then
|
|
-- string is not empty
|
|
end if
|