harn-parser 0.10.0

Parser, AST, and type checker for the Harn programming language
Documentation
1
2
3
4
5
6
# HARN-OWN-002 — mutable binding is never reassigned

## How to fix

- Declare the binding with `const` (immutable) instead of `let` (mutable) since it is never reassigned.
- Restructure so owned values do not escape their scope.