RosettaCodeData/Task/String-append/J/string-append.j
2023-07-01 13:44:08 -04:00

6 lines
80 B
Text

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