mirror of
https://codeberg.org/scip/rpnc.git
synced 2025-12-16 20:11:02 +01:00
19 lines
226 B
Plaintext
19 lines
226 B
Plaintext
# demo sessions, used to create an interactive rpn recording
|
|
|
|
# part 1: interactive
|
|
|
|
# put some numbers onto the stack
|
|
2 4 6
|
|
8
|
|
10
|
|
|
|
# take a look at the stack
|
|
dump
|
|
|
|
# add the last 2
|
|
+
|
|
|
|
# multiply the result and the previous
|
|
*
|
|
|