Empty string: Difference between revisions

no edit summary
m (Applesoft BASIC)
No edit summary
Line 1,264:
/*────────────────────────── 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}}==