#calculator #rpn #tui

app helix-calc

Reverse Polish Notation calculator in a terminal app

4 stable releases

1.1.1 Mar 18, 2025
1.0.4 Mar 6, 2025
1.0.3 Mar 5, 2025

#228 in Command line utilities

Download history 308/week @ 2025-03-05 167/week @ 2025-03-12 79/week @ 2025-03-19

554 downloads per month

GPL-3.0-only

26KB
652 lines

Helix Calc is a simple Reverse Polish Notation calculator.

It's written in Rust, using Ratatui for the cross-platform interface and #bigdecimal for the internal operations.

The name is inspired by Helix Editor, and the functionality by the venerable GNU dc.

This is a toy app that fulfills my personal needs, but I'm open to PR :)

Operations

  • +, -, *, / : perform the arithmetic operation on the top two values.
  • % : compute the modulo of the second value divided by the first.
  • ^ : raise the second value to the power of the first.
  • P : pop the top value off the stack.
  • d : duplicate the top value.
  • v : compute the square root of the top value.
  • k : pop the top value and use it to set the precision.
  • r : swap the first two values.

Negative numbers

Two options to enter them:

  • Type them as _123.
  • Type them as 123- (careful, no space).

Dependencies

~10–20MB
~294K SLoC