summaryrefslogtreecommitdiff
path: root/docs/variables.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-24 23:10:22 +0300
committerPaul Buetow <paul@buetow.org>2026-05-24 23:10:22 +0300
commit50bff2ffa7a09f3ae35b10219b49d5cf38457066 (patch)
tree997173667c42b78d902ce8f715d52af72b238e6a /docs/variables.md
parentdc89fa2bbcdea7c8847828f64be5e46ddded33fb (diff)
docs: de-LLM all .md files - remove corporate language, over-explanation, and LLM patterns
Diffstat (limited to 'docs/variables.md')
-rw-r--r--docs/variables.md9
1 files changed, 1 insertions, 8 deletions
diff --git a/docs/variables.md b/docs/variables.md
index 60474cc..b34ef9c 100644
--- a/docs/variables.md
+++ b/docs/variables.md
@@ -134,7 +134,7 @@ The `=` operator supports evaluating an expression immediately after assignment:
x 10 = x 5 + → 15 (assigns x=10, then computes x+5)
```
-## Practical Use Cases
+## Examples
### Storing Reusable Values
@@ -167,10 +167,3 @@ sum 10 + → 10
sum 20 + → 30
sum 5 - → 25
```
-
-## Reference
-
-- **Implementation**: `internal/rpn/operations_variables.go` (assignment operators, variable CRUD)
-- **Parsing**: `internal/rpn/rpn_parse.go` (`handleAssignmentOp()`, `handleStandardAssign()`)
-- **Registry**: `internal/rpn/operator_registry.go` (operator registration for `:=`, `=:`, `=`, `d`)
-- **Variable store**: `internal/rpn/variables.go` (thread-safe variable storage with save/load)