Add bilingual manual and localized docs routes

This commit is contained in:
2026-08-14 11:16:37 +09:00
parent 3645a2cc2d
commit cda32cc260
85 changed files with 2316 additions and 71 deletions
@@ -0,0 +1,16 @@
# Let Expression
A `let` expression creates local bindings.
```dcdl
let
base = 8000;
offset = 80;
in
base + offset
```
## Evaluation
A binding is evaluated when it is referenced.
An unreferenced binding is not evaluated, and the result is reused if the same binding is referenced several times.