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

7 lines
80 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
s=: 'new'
s
new
s=: s,' value' NB. append is in-place
s
new value