String concatenation: Difference between revisions

Content added Content deleted
No edit summary
Line 169: Line 169:
<pre>Variable 1 is "Hello,"
<pre>Variable 1 is "Hello,"
Variable 2 is "Hello, world!"</pre>
Variable 2 is "Hello, world!"</pre>

==={{header|IS-BASIC}}===
<lang IS-BASIC>100 LET S$="Hello"
110 LET S$=S$&" world!"
120 PRINT S$</lang>


==={{header|ZX Spectrum Basic}}===
==={{header|ZX Spectrum Basic}}===