https://github.com/sharpvik/qc
QC stands for "quick calc"
https://github.com/sharpvik/qc
Last synced: about 2 months ago
JSON representation
QC stands for "quick calc"
- Host: GitHub
- URL: https://github.com/sharpvik/qc
- Owner: sharpvik
- License: bsd-3-clause
- Created: 2021-06-22T22:11:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-22T22:12:14.000Z (over 4 years ago)
- Last Synced: 2025-01-16T18:29:45.493Z (about 1 year ago)
- Language: Haskell
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qc
QC stands for "quick calc" and it's just that -- a small binary that lets you
perform quick and simple calculations within your terminal! (In [RPN][rpn] tho...)
[rpn]: https://en.wikipedia.org/wiki/Reverse_Polish_notation
## Usage
```bash
qc 1 2 + 3 x 4 - 2 /
❯❯❯ 2.5
```
This is pretty much all it can really do.
## Install
Please, use `stack` or `cabal` to install QC like so:
```bash
git clone git@github.com:sharpvik/qc.git
cd qc
stack install # or `cabal install`
```
Both `stack` and `cabal` work since `stack` is just a convenience wrapper
around `cabal` anyway.