Empty string: Difference between revisions

m (→‎{{header|NS-HUBASIC}}: The program does the same thing, but in less code.)
Line 2,259:
"Check that string is not empty"
str isEmpty not.</lang>
 
=={{header|SenseTalk}}==
<lang self>
set emptyString to ""
 
put emptyString
 
put emptyString is empty
 
put emptyString is not empty
</lang>
{{out}}
<pre>
True
False</pre>
 
=={{header|Sidef}}==