String concatenation: Difference between revisions

m
No edit summary
Line 417:
 
=={{header|Elena}}==
ELENA 3.4:
<lang elena>programpublic =program
[
var s := "Hello".
var s2 := s + " literal".
console writeLine:s.
console writeLine:s2.
console readChar.
].</lang>
{{out}}
<pre>
Hello
Hello literal
</pre>
 
=={{header|Elixir}}==
Anonymous user