Empty string: Difference between revisions

Content added Content deleted
(Added Wren)
No edit summary
Line 1,417: Line 1,417:
=={{header|LabVIEW}}==
=={{header|LabVIEW}}==
{{VI solution|LabVIEW_Empty_string.png}}
{{VI solution|LabVIEW_Empty_string.png}}

=={{header|Lambdatalk}}==
In Lambdatalk primitives working on sequences of words begin with "S."
<lang scheme>
'{def emptyString }
-> emptyString

'{S.empty? {emptyString}}
-> true

'{S.empty? hello}
-> false

'{= {S.length {emptyString}} 0}
-> true
</lang>


=={{header|Lasso}}==
=={{header|Lasso}}==