String concatenation: Difference between revisions

m
no edit summary
No edit summary
mNo edit summary
Line 1,356:
<lang bash>echo "hello"
| xargs -n1 -i echo {} literal</lang>
 
=={{header|Ursa}}==
<lang ursa>decl string s1 s2
# make s1 contain "hello "
set s1 "hello "
 
# set s2 to contain s1 and "world"
set s2 (+ s1 "world")
 
# outputs "hello world"
out s2 endl console</lang>
 
=={{header|Visual Basic .NET}}==
Anonymous user