RosettaCodeData/Task/Empty-string/Zkl/empty-string.zkl

4 lines
102 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
s:=""; // or s:=String, String is the object ""
s.toBool() //-->False
if (s) println("not empty")