Binary strings: Difference between revisions

m
→‎{{header|FutureBasic}}: Fix typo "CFSString" -> "CFString"
m (→‎{{header|RPL}}: formatting)
m (→‎{{header|FutureBasic}}: Fix typo "CFSString" -> "CFString")
 
(One intermediate revision by one other user not shown)
Line 1,707:
</pre>
 
'''CFSStringCFString example:'''
<syntaxhighlight lang="futurebasic">
print @"----------------------"
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
416

edits