String concatenation: Difference between revisions

Content deleted Content added
Added MiniScript
Drkameleon (talk | contribs)
No edit summary
Line 216:
hello literal
</pre>
 
=={{header|Arturo}}==
 
<lang arturo>str1 "Hello "
str2 "World"
 
print str1 + str2 + "!"</lang>
 
{{out}}
 
<pre>Hello World!</pre>
 
=={{header|BASIC}}==