diff options
author | Mike Buland <eichlan@xagasoft.com> | 2014-11-28 11:12:14 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2014-11-28 11:12:14 -0700 |
commit | 02573826558bd44f0ec3ed542964be0096d5e389 (patch) | |
tree | ff69cbedc277a55ab947ca42d9b1ba548a0c7f40 /parserhelp.txt | |
parent | b4510a2861acabf1f27ecbd8c42602a0c342763d (diff) | |
download | clic-02573826558bd44f0ec3ed542964be0096d5e389.tar.gz clic-02573826558bd44f0ec3ed542964be0096d5e389.tar.bz2 clic-02573826558bd44f0ec3ed542964be0096d5e389.tar.xz clic-02573826558bd44f0ec3ed542964be0096d5e389.zip |
build builds the datafiles class now.
Added a little bit of help, too.
Diffstat (limited to '')
-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 | |||