Empty string: Difference between revisions

Content added Content deleted
m (Applesoft BASIC)
No edit summary
Line 1,264: Line 1,264:
/*────────────────────────── anyway, as they say: "choose your poison." */</lang>
/*────────────────────────── anyway, as they say: "choose your poison." */</lang>


=={{header|Ring}}==
<lang ring>
cStr = NULL # empty string
if cStr = NULL
see "cstr is an empty string!" + nl
else
see "cstr is not empty string!" + nl
ok
</lang>
=={{header|Ruby}}==
=={{header|Ruby}}==