String concatenation: Difference between revisions

Content added Content deleted
(Added Dyalect programming language)
Line 462: Line 462:
{{trans|Swift}}
{{trans|Swift}}


<lang Dyalect>let s = "hello"
<lang Dyalect>var s = "hello"
print(s + " literal")
print(s + " literal")
var s1 = s + " literal"
var s1 = s + " literal"