RosettaCodeData/Task/Empty-string/Euphoria/empty-string.euphoria
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

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