String concatenation: Difference between revisions

Content deleted Content added
PatGarrett (talk | contribs)
Line 1,221: Line 1,221:
set u "!"
set u "!"
puts $s$t$u ;# There is nothing special here about using puts; just an example</lang>
puts $s$t$u ;# There is nothing special here about using puts; just an example</lang>

=={{header|TI-83 BASIC}}==
<lang ti83b>
"HELLO"→Str0
Str0+" WORLD!"→Str0
</lang>
{{out}}
<pre>
HELLO WORLD!
</pre>



=={{header|TI-89 BASIC}}==
=={{header|TI-89 BASIC}}==