summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2026-03-26increment versionv0.4.1mainPaul Buetow
2026-03-26fix modulePaul Buetow
2026-03-26updatePaul Buetow
2026-03-26Update README with details on LLMs used and project purposePaul Buetow
2026-03-26chore: bump version to v0.4.0Paul Buetow
2026-03-26refactor: move integration tests to ./integrationtests folderPaul Buetow
2026-03-26Update README to show gt arguments in quotesPaul Buetow
2026-03-26refactor: remove unused StackOperations structPaul Buetow
2026-03-26fix: remove unused variable assignments in test filesPaul Buetow
2026-03-26fix: address code quality issues from golangci-lintPaul Buetow
2026-03-26refactor: Extract RPN assignment handlers to fix SRP violationPaul Buetow
2026-03-26feat: Support piping expressions via stdinPaul Buetow
2026-03-26fix: Register < operator and fix > operator mappingPaul Buetow
2026-03-26delete planPaul Buetow
2026-03-26fix: Handle boolean operators == and != correctlyPaul Buetow
2026-03-26feat: Add integration tests for variable assignments and fix RPN parser bugsPaul Buetow
2026-03-25cleanupPaul Buetow
2026-03-25remove this onePaul Buetow
2026-03-25rpn: fix x =: stack-based variable assignmentPaul Buetow
2026-03-25rpn: Final verification - all unit tests passPaul Buetow
2026-03-25rpn: Add unit test for exact user scenario with x =: incremental assignmentPaul Buetow
2026-03-25rpn: Finalize assignment operators implementationPaul Buetow
2026-03-25rpn: Add unit test for user scenario with x =: taking value from stackPaul Buetow
2026-03-25README: Add fox mascot ASCII art logoPaul Buetow
2026-03-25rpn: Fix incremental assignment with x =: (take value from stack)Paul Buetow
2026-03-25rpn: Implement := and =: operators with incremental assignment supportPaul Buetow
2026-03-25rpn: Add test for incremental assignment with =: operatorPaul Buetow
2026-03-25rpn: Fix := and =: operators semanticsPaul Buetow
2026-03-25rpn: Fix =: operator pop order for REPL modePaul Buetow
2026-03-25rpn: Fix AssignLeft/AssignRight to handle StringNum correctlyPaul Buetow
2026-03-25rpn: Add := and =: assignment operators with = synonymPaul Buetow
2026-03-25code-quality: Various improvements to code quality and thread safetyPaul Buetow
2026-03-25remove CI workflow, badges from READMEPaul Buetow
2026-03-25Rename calculator package to percPaul Buetow
2026-03-25docs: Move Rational Number Mode section to after TestingPaul Buetow
2026-03-25Fix Ln operation and add comprehensive testsPaul Buetow
2026-03-25fix: Modulo operation correctly uses Number.Mod for moduloPaul Buetow
2026-03-25fix: Power operation correctly uses Number.Pow for exponentiationPaul Buetow
2026-03-25fix: Divide operation correctly handles zero checking and divisionPaul Buetow
2026-03-25fix: Subtract operation correctly uses Number interfacePaul Buetow
2026-03-25fix: Add operation uses Number interface correctlyPaul Buetow
2026-03-25fix: Add operation correctly uses Number interfacePaul Buetow
2026-03-25refactor: Granular interfaces already exist for Operations structPaul Buetow
2026-03-25refactor: Operator interface already split into granular interfacesPaul Buetow
2026-03-25refactor: Refactor RPN to use Number interface uniformly for stack valuesPaul Buetow
2026-03-25refactor: Refactor RPN.GetCurrentStack to return []ValuePaul Buetow
2026-03-25refactor: Update GetCurrentStack to return []Value instead of []float64Paul Buetow
2026-03-25chore: Clean up backup filePaul Buetow
2026-03-25refactor: Split internal/rpn/rpn.go into separate files for better SRPPaul Buetow
2026-03-25fix: Log10 operation correctly handles Value conversionPaul Buetow