This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| pf:createparticle [2015/02/28 16:34] – Karsten75 | pf:createparticle [2015/03/04 16:56] (current) – removed Karsten75 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ~~DISCUSSION~~ | ||
| - | <- [[class link]] < | ||
| - | ===== add ===== | ||
| - | ^Arguments^Result^Notation^ | ||
| - | |Two items on the stack|The sum of two items |'' | ||
| - | |||
| - | === How to use === | ||
| - | |||
| - | | Standard CRPL | //num num// **add ** | | ||
| - | | Warp notation | **add** (//num num//) | | ||
| - | |||
| - | === Description === | ||
| - | Adds the two arguments together and pushes the result on the stack. | ||
| - | === Examples === | ||
| - | < | ||
| - | ShowTraceLog | ||
| - | 4 5 add Trace | ||
| - | #Adds 4 and 5, then traces the result. | ||
| - | </ | ||
| - | |||
| - | Same example in Warp notation: | ||
| - | |||
| - | < | ||
| - | showtracelog | ||
| - | add(4 5) ->result | ||
| - | Trace(< | ||
| - | </ | ||