This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:docs:write [2013/01/14 18:47] – external edit 127.0.0.1 | crpl:docs:write [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | |||
+ | <- [[crpl: | ||
===== -> | ===== -> | ||
- | ^Arguments^Result^Notation^ | + | ===== Syntax ===== |
- | |Some item on the stack| ||| FIXME ||| | + | |
+ | -> | ||
+ | |||
+ | ===== Description ===== | ||
+ | |||
+ | Pops an item from the stack and stores it in the local variable named **VARNAME**. Local variables persist across script invocations. | ||
+ | ===== Examples ===== | ||
- | === Description === | + | < |
- | Pops an item from the stack and stores it in the local variable named VARNAME. | + | 1 ->a |
- | Local variables persist across script invocations. | + | 3.14 ->number |
- | === Examples === | + | " |
- | < | + | </ |
- | # 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 | + | |
- | </ | + | |