This is an old revision of the document!
~~DISCUSSION~~ <- CRPL reference <- Math Commands
Arguments | Result | Notation |
---|---|---|
Two items on the stack | The sum of two items | n1 n2 – n3 |
Standard CRPL | num num add |
Warp notation | add (num num) |
Adds the two arguments together and pushes the result on the stack.
ShowTraceLog 4 5 add Trace #Adds 4 and 5, then traces the result. You should see a 9 appear in the trace log.
Same example in Warp notation:
showtracelog trace (add (4 5))