Empty string: Difference between revisions

m
(Edited C# and Visual Basic .NET)
Line 1,631:
 
=={{header|Nanoquery}}==
<lang nanoquery>$s = ""
 
if len($s)=0
println "$s is empty"
else
end
println "$s is not empty"
 
if len($s)>0
println "$s is not empty"
end</lang>
 
Anonymous user