Empty string: Difference between revisions

no edit summary
(Added Wren)
No edit summary
Line 1,417:
=={{header|LabVIEW}}==
{{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}}==