Empty string: Difference between revisions

Content added Content deleted
m (→‎{{header|NS-HUBASIC}}: The program does the same thing, but in less code.)
Line 2,259: Line 2,259:
"Check that string is not empty"
"Check that string is not empty"
str isEmpty not.</lang>
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}}==
=={{header|Sidef}}==