Categorygithub.com/blackchip-org/zc/v5
5.12.4
Repository: https://github.com/blackchip-org/zc.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

zc

A fun stack based calculator.

Use the browser version here:

https://blackchip-org.github.io/zc

Use tab to auto-complete. First tab completes an operation name as much as possible. Next tab shows matching candidates. When using on a mobile device, use the "?" button to emulate pressing the tab button twice.

Example use:

https://blackchip-org.github.io/zc/?eval=1+8+seq+[2+sw+pow]+map

Documentation

Go Reference

ZC Demo

About

When I'm at a terminal prompt and I need to use a calculator, bc has always been my tool of choice. I thought it would be fun to write a calculator myself but with some items from my wish list built in. Those items are:

  • A stack-based calculator. Typing in a value places it on the stack. An operation consumes values on the stack and places its results back on the stack.
  • To minimize the use of the shift key. Instead of using + for addition, use add or a which is easier to type.
  • Use arbitrary sized integers and fixed point math by default. 1.1 2.2 add should be 3.3 and not 3.3000000000000003.
  • Be more than a simple calculator. Need an external tool to lookup, compute, or calculate? Put it in the calculator as a module instead. Make this calculator like a Swiss army knife.
  • Auto-complete!

This is the third iteration of this calculator and something fun to work on when time is available. It is a bit rough at this stage but should be useful nonetheless. Also, it will always be a bit rough--full of bugs and inconsistencies. Features get added as I need or think of them. Bugs get fixed or ignored as I see them. There is no grand plan beyond tinkering around for entertainment. Things may change in backwards incompatible ways with no notice.

Installation

For the command-line version, install go and then install the calculator with:

go install github.com/blackchip-org/zc/v5/cmd/zc@latest

Run the calculator with:

zc

Overview

Each line entered at the calculator prompt is divided into words. Each word is separated by whitespace. A word can be either a:

  • value: Starts with a numeric character, a decimal point, a numeric sign, or quotes. Values are placed onto the stack.
  • operation: Invokes a operation with the given name. Parameters are consumed from the stack and results are placed on the stack.

If 2 3 a is entered at the prompt, the values of 2 and 3 are placed on the stack, the a operation (for addition) is executed, the values are consumed and the result 5 is placed on the stack.

Examples of calculator use will be presented in a table such as:

InputStack
2 3 a5

The Input column shows the text entered at the prompt and the Stack column shows the contents of the stack after the line is evaluated. Each word could have been placed on a separate line:

InputStack
22
32 | 3
a5

If there are multiple items on the stack, they are notated by using a pipe | character to separate each item. The item on the right is the top of the stack.

If an operation does not change the stack an informational line may be printed right above the prompt. This is notated in the table by showing the information line in italics.

InputStack
0 rand-seedseed set to 0

The basic math functions are:

FunctionDescription
add, a, +Addition
sub, s, -Subtraction
mul, m, *Multiplication
div, d, /Division

For each of these operations there are three separate names. For addition there is:

  • a: Easy to type without having to use the shift key
  • add: Easy to read in documentation
  • +: Easy to type if you have a keyboard with a number pad

Additional basic math functions can be found in the basic reference.

Example

Let's compute the distance between two points: (2, 3) and (5, 7). The formula for this uses the Pythagorean theorem:

dist = sqrt((x2 - x1)^2 + (y2 - y1)^2)

The steps are:

  • Compute x2 - x1
  • Square the result
  • Compute y2 - y1
  • Square the result
  • Add them together
  • Take the square root

The entry into the calculator looks like the following:

InputStack
5 2 sub3
2 pow9
7 3 sub9 | 4
2 pow9 | 16
add25
sqrt5

Numbers

Thousand separators are ignored when parsing numbers:

InputStack
65,536 sqrt256

Currency symbols are also ignored when parsing:

InputStack
$1234 2 mul2468

Integer math uses arbitrary sized values when possible:

InputStack
2 128 pow340282366920938463463374607431768211456

Real number math uses fixed point math when possible:

InputStack
1.1 2.2 a3.3

Numbers may have a suffix of f to use a floating point operation instead:

InputStack
1.1f 2.2 a3.3000000000000003

Enter fractions in a/b notation:

InputStack
1/2 1/41/2 | 1/4
add3/4

Prefix a whole number to a fraction with either a space, an underscore, or a hyphen:

InputStack
2-1/2 3-1/42-1/2 | 3-1/4
add5 3/4

Enter complex numbers in r+i notation:

InputStack
1+2i 2+3i1+2i | 2+3i
add3+5i

Text

Text can be used as a value by either one of two ways. If the text does not contain any whitespace, the text can be prefixed with a slash, /. For example:

InputStack
1 21 | 2
/add1 | 2 | add

Otherwise, surround text with quotes. Single quotes, ' ', double quotes, " " or square brackets, [ ] can be used. If the text value is the only item on the line, an ending quote is not required. The following computes the length, in characters, of the given text:

InputStack
'one thousandone thousand
len12

Using brackets is convenient when nesting quoted values:

InputStack
1 2 [[[add]]]1 | 2 | [[add]]
eval1 | 2 | [add]
eval1 | 2 | add
eval3

To use multiple lines as values (for example, when pasting the contents of the clipboard), use quote with a delimiter that marks the end of the values. Each line is considered a separate value when using quote. For example:

InputStack
1 2 add3
quote EOF3
2 3 add3 | 2 3 add
EOF3 | 2 3 add

Annotations

Values on the stack may have annotations to provide some additional metadata. An annotated value ends with a hash mark # and the annotation text. For example, values are given an 'inexact' annotation when a Rational value cannot be exactly converted to a Decimal. Example:

InputStack
2/3 dec0.6666666666666666 # inexact

Annotations are also used to indicate the units for a result.

InputStack
1 1 2 21 | 1 | 2 | 2
haversine157225.4320380729 # m
m-km 2 round157.23 # km

Note that annotations are lost when values are popped off the stack.

Use the anno operation to annotate a value and the no-anno or noa operation to remove an annotation:

InputStack
4242
[the answer] anno42 # the answer
noa42

To disable annotations, set the ZC_NO_ANNO environment variable to any value.

Macros

Let's say that you commonly have to compute a sales tax that is 5%. To compute the sales tax on something that costs $123:

InputStack
$123$123
dup$123 | $123
0.05$123 | $123 | 0.05
mul$123 | 6.15
add129.15

Repeated use of this pattern can be used with a macro:

InputStack
def tax dup 0.05 mul macro 'tax' defined
$123$123
tax add129.15

The name of = is reserved for your macro use in bulk operations:

InputStack
def = top f-c 2 roundmacro '=' defined
32 =0 # °C
68 =20 # °C
100 =37.78 # °C

No operations start with a . character and can be used for macro names. Play a game of rock, paper, scissors:

InputStack
1 rand-seedseed set to 1
def .rps c 'rock' 'paper' 'scissors' rand-choicemacro '.rps' defined
.rpsscissors
.rpsrock

Macros can also be used to override calculator operations. Undefine the macro by using def without an expression.

InputStack
def pi 'Yummacro 'pi' overrides
piYum
def pimacro 'pi' undefined
pi 5 rYum | 3.14159

Higher order functions

The map operation can be used to apply a function to each item on the stack. To use this operation, the top element of the stack should be an expression to evaluate. Place this expression on the stack using quotes to prevent immediate evaluation. For example, to double all numbers on the stack:

InputStack
1 2 3 4 51 | 2 | 3 | 4 | 5
[2 mul1 | 2 | 3 | 4 | 5 | 2 mul
map2 | 4 | 6 | 8 | 10

The fold function can be used to reduce all items in the stack to a single value. For example, to sum all the numbers on the stack:

InputStack
1 2 3 4 51 | 2 | 3 | 4 | 5
[add1 | 2 | 3 | 4 | 5 | add
fold15

Additional higher-order functions can be found in the hof reference.

Memory

Sometimes it is convenient to store the contents of the stack to memory which can be recalled later. Let's manually compute the population standard deviation found in the example on the Wikipedia page.

The average of the all the data points must first be computed and then deviations from that average are calculated. The data is first entered into the calculator and then the stack is saved with the name of data. The average is then computed and stored with the name of av. The data points are then recalled from memory and the deviations from the average are calculated for each value. The standard deviation is then simply the square root of the average deviation.

InputStack
2 4 4 4 5 5 7 92 | 4 | 4 | 4 | 5 | 5 | 7 | 9
/data setset
avg5
/av setset
c /data get2 | 4 | 4 | 4 | 5 | 5 | 7 | 9
[/av get sub sq] map9 | 1 | 1 | 1 | 0 | 0 | 4 | 16
avg sqrt2

Stacks can also be placed in a general memory location with no name by using store and recall. This location is also a stack itself with store pushing the current stack to the memory stack and recall popping off the top stack.

InputStack
2 4 4 4 5 5 7 92 | 4 | 4 | 4 | 5 | 5 | 7 | 9
storestored
avg5
recall2 | 4 | 4 | 4 | 5 | 5 | 7 | 9 | 5
[sub sq] /map 2 apply9 | 1 | 1 | 1 | 0 | 0 | 4 | 16
avg sqrt2

Commands

These commands are available when running the calculator interactively:

CommandDescription
blank lineRemove the first item from stack
defDefine a macro
redoRedo the last undo
quitPrint the final stack and return to shell
quoteAdd each line to the stack until delimiter is found
undo, uUndo the last line entered

Command line

Any arguments found on the command line are passed to the calculator for a one-time evaluation:

$ zc 2 3 add
5

Using quotes from the command line can be tricky since they are interpreted by the shell:

$ zc 'foo' len
(!) unknown operation: foo

In this case, wrap the expression with quotes and then use square brackets for foo:

$ zc '[foo] len'
3

Use a single argument of - to read from standard input:

$ echo "2 3 add" | zc -
5

External Libraries

Some features of the calculator use external C libraries. The current release binaries do not include these external libraries and using one of these operations will raise a "feature not supported" error.

To use these features, install the necessary dependencies and build locally using make. See the credits below for more information.

Credits

License

MIT

Feedback

Contact me at [email protected]