Binary strings: Difference between revisions

m
→‎{{header|Wren}}: Changed to Wren S/H
m (→‎{{header|RPL}}: formatting)
m (→‎{{header|Wren}}: Changed to Wren S/H)
Line 4,363:
 
Setting a string variable to the special value ''null'' means that the variable currently has no value though it can still be assigned one later.
<syntaxhighlight lang="ecmascriptwren">// create string
var s = "abc"
 
Line 4,398:
t = "def"
var u = s + t // "abcdef"</syntaxhighlight>
 
=={{header|Yabasic}}==
<syntaxhighlight lang="yabasic">// Rosetta Code problem: http://rosettacode.org/wiki/Binary_strings
9,476

edits