Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Update docs to reflect addition of history operator
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredxing committed Mar 27, 2015
1 parent 7ac72fa commit 8aa6811
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ This is probably the mode you'll want to use. It's like the `python` shell or `i
-15
> 3pi^2
29.608813203268074
> @+1
30.608813203268074
> @@@*2
-30
> ln(-1)
NaN
```
Expand All @@ -46,6 +50,9 @@ calc supports all the standard stuff, and I'm definitely adding more later (also
##### Constants
`e`, `pi`, `π`

##### History
Previous results can be accessed with the `@` symbol. A single `@` returns the result of the last computation, while multiple `@` gets the n<sup>th</sup> last result, where n is the number of `@`s used (for example, `@@` returns the second-last result, `@@@@@` returns the fifth-last result).

### Why not use ...?
- Google
- Doesn't work without an internet connection
Expand Down

0 comments on commit 8aa6811

Please sign in to comment.