diff options
Diffstat (limited to 'parserhelp.txt')
-rw-r--r-- | parserhelp.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/parserhelp.txt b/parserhelp.txt index 0da866c..12a82b1 100644 --- a/parserhelp.txt +++ b/parserhelp.txt | |||
@@ -19,3 +19,12 @@ matter what radix is currently set. These are also displayed in base 10 | |||
19 | at all times. | 19 | at all times. |
20 | 20 | ||
21 | Changing the radix always clears all variables. | 21 | Changing the radix always clears all variables. |
22 | |||
23 | Every result that is provided is placed into the variable $ans, which makes | ||
24 | running totals or reusing values without calculating them again easy, e.g. | ||
25 | |||
26 | 552*0.01 | ||
27 | 5.52 | ||
28 | $ans + 101 | ||
29 | 106.52 | ||
30 | |||