Add stack element

+=

Stack
Stack Position Description
Stack(In) top any value a
  top-1 vector x
Stack(Out) top vector x

Attaches a to Vector x as the last element.

This operation generates no new vector like the operand | and is therefore more efficient.

Code example:
Var(v)
[ 1€ 2€ ] -> v
3€ v +=
 => [ 1€ 2€ 3€ ]