This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pf:createparticle [2015/02/28 16:32] – created Karsten75 | pf:createparticle [2015/03/04 16:56] (current) – removed Karsten75 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ~~DISCUSSION~~ | ||
- | <- [[crpl: | ||
- | ===== 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(< | ||
- | </ |