Skip to content
/ rpncalc Public
forked from apesic/rpncalc

A simple RPN (Reverse Polish Notation) calculator app built using Flutter

License

Notifications You must be signed in to change notification settings

wviana/rpncalc

Repository files navigation

icon RPNcalc

Get it on Google Play

A simple, modern RPN calculator that uses RPN.

Reverse Polish Notation is a system where the operators are entered after the operands.

For example, rather than 2 + 2, you would enter:

2
2
+ 

The main benefit is a faster, more accurate interface:

Reverse Polish calculators do not need expressions to be parenthesized, so fewer operations need to be entered to perform typical calculations. Additionally, users of reverse Polish calculators made fewer mistakes than for other types of calculators.

(from the Wikipedia article above).

screenshot

Future work

  • Scientific mode
  • Persistent history
  • iOS release

Flutter CI

About

A simple RPN (Reverse Polish Notation) calculator app built using Flutter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 95.4%
  • Ruby 3.2%
  • Other 1.4%