Calculator
Zig exercise: using std types to implement a basic shell calculator
21 Jul 2024Today I decided to get some practice using Zig’s data structures from the
standard library, building an old friend: a bc style calculator, implementing
the algorithms to evaluate reverse Polish
notation expressions
and converting from infix to that notation.