mirror of
https://github.com/louisrubet/rpn
synced 2024-12-31 10:23:49 +01:00
33 lines
322 B
Text
33 lines
322 B
Text
|
## REAL representation
|
||
|
|
||
|
# std
|
||
|
erase
|
||
|
1
|
||
|
10 std
|
||
|
-> stack should be 1
|
||
|
|
||
|
3 /
|
||
|
-> stack should be 0.3333333333
|
||
|
|
||
|
3 std
|
||
|
-> stack should be 0.333
|
||
|
|
||
|
# fix
|
||
|
drop
|
||
|
10 fix
|
||
|
1
|
||
|
-> stack should be 1.0000000000
|
||
|
|
||
|
4 fix
|
||
|
-> stack should be 1.0000
|
||
|
|
||
|
# sci
|
||
|
12 sci
|
||
|
-> stack should be 1.000000000000e+00
|
||
|
|
||
|
2 sci
|
||
|
-> stack should be 1.00e+00
|
||
|
drop
|
||
|
|
||
|
default
|