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
let expression は、ローカル束縛を作る。
```dcdl
let
base = 8000;
offset = 80;
in
base + offset
```
## 評価
binding は参照された時点で評価される。
参照されない binding は評価されず、同じ binding を複数回参照した場合は評価結果が再利用される。