index
:
gt
main
Mini CLI calculator with REPL
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
internal
/
rpn
/
operations.go
Age
Commit message (
Expand
)
Author
2026-03-25
feat: Implement boolean operators and mixed boolean-numeric arithmetic
Paul Buetow
2026-03-25
ci: Update Magefile to include shortcuts for build, test, lint, and release
Paul Buetow
2026-03-25
refactor: Update Show command to format boolean values correctly
Paul Buetow
2026-03-25
docs: Add SPDX license headers to all .go source files
Paul Buetow
2026-03-25
refactor: Add error wrapping with %w where appropriate
Paul Buetow
2026-03-25
fix: Handle Value types correctly in RPN operations
Paul Buetow
2026-03-25
docs: Add comprehensive Go documentation for REPL functions
Paul Buetow
2026-03-24
feat: Add RPN mode, rational number support, and improve REPL
Paul Buetow
2026-03-23
Refactor rpn.handleOperator to use operator registry instead of switch statement
Paul Buetow
2026-03-23
Fix errcheck issues in cmd/perc, internal/repl, and internal/rpn packages
Paul Buetow
2026-03-23
Refactor Operator interface to reduce bloat and fix errcheck issue
Paul Buetow
2026-03-23
internal/rpn: fix error handling, variable name validation, and locking issues
Paul Buetow
2026-03-20
internal/rpn: define Operator interface and make RPN depend on it
Paul Buetow
2026-03-20
feat: Add hyper operator methods for stack operations
Paul Buetow
2026-03-20
refactor: update Operations to use VariableStore interface
Paul Buetow
2026-03-20
internal/rpn: add operations.go with operator implementations
Paul Buetow