String concatenation: Difference between revisions

Content added Content deleted
No edit summary
(Add QB64)
Line 1,536: Line 1,536:
<pre>hello, world, mom
<pre>hello, world, mom
hello, world, mom</pre>
hello, world, mom</pre>

=={{header|QB64}}==
<lang qbasic>s1$ = "String"
s2$ = s1$ + " concatenation"
Print s1$
Print s2$</lang>
{{out}}
<pre>
String
String concatenation
</pre>


=={{header|Quackery}}==
=={{header|Quackery}}==