-rot

Input Stack:
b
a
...
Output Stack:
a
...
b

Rotate the stack so that the item at the top is now at the bottom.

Example:

a,b,c,d,:-rot
PosInputOutput
0 d c
1 c b
2 b a
3 a d