Empty string: Difference between revisions

Content added Content deleted
Line 1,364: Line 1,364:


=={{header|zkl}}==
=={{header|zkl}}==
<lang zkl>s:="";
<lang zkl>s:=""; // or s:=String, String is the object ""
s.toBool() //-->False
s.toBool() //-->False
if (s) println("not empty")</lang>
if (s) println("not empty")</lang>