Citrine/EN | Manual

[ List ] prepend: [ String ]

☞ x ≔ List ← 1 ; 2 ; 3.
x append: 0.
x prepend: 9.
✎ write: x, stop.
List ← 9 ; 1 ; 2 ; 3 ; 0