RosettaCodeData/Task/Empty-string/Zkl/empty-string.zkl
2023-07-01 13:44:08 -04:00

3 lines
102 B
Text

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