String concatenation: Difference between revisions

(Add QB64)
Line 1,793:
 
=={{header|Smalltalk}}==
In Smalltalk "," (comma) is a binary message (virtual function) implemented by Collection (and therefore also understood by strings):
 
<lang smalltalk>|s s1| s := 'hello'.
(s,' literal') printNl.
Anonymous user