Empty string: Difference between revisions

Content added Content deleted
(→‎{{header|Nyquist}}: syntax variations)
(Added 11l)
Line 12:
 
[[Category:String manipulation]] [[Category:Simple]]
 
=={{header|11l}}==
<lang 11l>V s = ‘’
I s.empty
print(‘String s is empty.’)
I !s.empty
print(‘String s is not empty.’)</lang>
 
=={{header|8th}}==