Bugfixes: add cljQuot/cljRem to runtime, quot/rem to interpreter. Cleanup: remove unused processAgentActions and sequtils import. 164 tests pass.

This commit is contained in:
2026-05-08 20:45:36 +03:00
parent 30fde68fed
commit 88866872be
6 changed files with 42 additions and 17 deletions
+7 -1
View File
@@ -79,4 +79,10 @@
## Known Issues
- `->>` threading macro with nested `map`/`reduce` requires proper macro expansion context
- REPL definitions are re-compiled from scratch on each evaluation (slow but correct)
- REPL definitions are re-compiled from scratch on each evaluation (slow but correct — interpreter path handles most cases in <0.1ms now)
- ffi/interop examples fail — `sin` symbol not found (Nim module import issue, pre-existing)
## Recent Bug Fixes (2026-05-08)
- Fixed: `quot`/`rem` — added `cljQuot`/`cljRem` to runtime + interpreter support
- Fixed: `rem` — interpreter and compiled path both now handle `(rem n d)`
- Cleanup: removed unused `processAgentActions` proc, unused `sequtils` import in repl.nim