This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:docs:write [2021/02/05 16:43] – Rmoved discussion tag Karsten75 | crpl:docs:write [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 4: | Line 4: | ||
===== -> | ===== -> | ||
- | ^Arguments^Result^Notation^ | + | ===== Syntax ===== |
- | |Some item on the stack| | n1 -- | | + | |
+ | -> | ||
- | === Description === | + | ===== Description |
- | Pops an item from the stack and stores it in the local variable named VARNAME. | + | |
- | Local variables persist across script invocations. | + | Pops an item from the stack and stores it in the local variable named **VARNAME**. Local variables persist across script invocations. |
- | === Examples === | + | |
- | < | + | ===== Examples |
- | # Store coordinate points in local variables. | + | |
- | # The points are defined once and assigned to local variables. | + | < |
- | once | + | 1 ->a |
- | 10 ->x1 | + | 3.14 ->number |
- | 20 ->y1 | + | " |
- | 40 ->x2 | + | </ |
- | 50 ->y2 | + | |
- | endonce | + | |
- | </ | + | |