Wiki: Rockstar

Rounding

Array operators

push x 2,3,4,5
t = x+6 (t = 2,3,4,5,6)
t = 1+x (t = 1,2,3,4,5)
t = x+x (t = 2,3,4,5,2,3,4,5)
t = x-2 (removes 2nd element: t = 2,3,5)

Any other arithmetic operation converts the array to its length:

t = 0-x (t = -4)

For each

while v
say pop v

is one byte shorter than

while v as x
say x

Into

t = x
cut t

is one byte shorter than

cut x into t