Citrine/EN | Manual

[ File ] append: [ String ]

☞ x ≔ File new: (Path /tmp: ‘a.txt’).
x write: ‘123’.
✎ write: x read, stop.
x append: ‘345’.
✎ write: x read, stop.
123
123345