RosettaCodeData/Task/Empty-string/Zkl/empty-string.zkl
2017-09-25 22:28:19 +02:00

3 lines
102 B
Text

s:=""; // or s:=String, String is the object ""
s.toBool() //-->False
if (s) println("not empty")