mirror of
https://github.com/louisrubet/rpn
synced 2025-01-01 18:20:06 +01:00
36 lines
379 B
Text
36 lines
379 B
Text
## STRING
|
|
|
|
default
|
|
erase
|
|
|
|
# ->str on real (1)
|
|
1
|
|
->str
|
|
-> stack should be "1"
|
|
drop
|
|
|
|
# ->str on real (2)
|
|
1.234
|
|
25 std
|
|
->str
|
|
-> stack should be "1.234"
|
|
drop
|
|
|
|
# ->str on real (3)
|
|
1.234
|
|
20 fix
|
|
->str
|
|
-> stack should be "1.23400000000000000000"
|
|
drop
|
|
|
|
# ->str on symbol (1)
|
|
toto
|
|
->str
|
|
-> stack should be "'toto'"
|
|
drop
|
|
|
|
# ->str on symbol (2)
|
|
'toto'
|
|
->str
|
|
-> stack should be "'toto'"
|
|
drop
|