RosettaCodeData/Task/String-append/J/string-append.j

7 lines
80 B
Plaintext

s=: 'new'
s
new
s=: s,' value' NB. append is in-place
s
new value