This is an old revision of the document!
<- CRPL reference <- Vars and Functions
Arguments | Result | Notation |
---|---|---|
Some item on the stack | n1 – |
Pops an item from the stack and stores it in the local variable named VARNAME. Local variables persist across script invocations.
# Store coordinate points in local variables. # The points are defined once and assigned to local variables. once 10 ->x1 20 ->y1 40 ->x2 50 ->y2 endonce