A fast and lightweight CLI app built in Go that serves all your calculator needs in the terminal.
go mod init calcTUI
go mod tidy
go buildcalcTUI <exp> # evaluate <exp>
calcTUI # open an interactive TUI calculator that accepts raw inputNote that <exp> follows what you would input to the TUI
Currently, this app is simply a basic calculator.
I plan on adding a programmer mode, a scientific mode and an all-in-one mode.