Replicalc

Replicalc running under Gnome

Replicalc is a lightweight, keyboard-driven calculator inspired by the TI-83's REPL interface. Replicalc is available free-of-charge for Linux and Windows.

Downloads

Features

  • Basic math operators (+, -, *, /, ^, %)
  • Parentheses
  • Store expression results in variables and use them together!

Quickstart

To evaluate an expression, type it into the prompt:

> 9 * 3
27

The result is automatically stored inside the ans variable. This can be used in further expressions:

> 9 * 3
27

> ans
27

> ans + 4
31

Results can be stored inside an alternative variable using the assignment operator (=):

> foo = 10
foo = 10

Use the vars command to print a list of variables and their respective values:

> vars
Variables:
 ans  31
 foo  10

Fractions are supported, up to four decimal places. The decimal places are automatically omitted for whole numbers:

> 9 / 3
3

> 9 / 3.0001
2.9999

For further information, use the help command.