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
+18
View File
@@ -0,0 +1,18 @@
# Float
`Float` is the primitive type constraint for floating-point values.
## Examples
```dcdl
ratio = Float;
threshold = Float default 0.5;
```
## Relationship to Int
`Int` and `Float` are distinct primitive type constraints.
A `Float` constraint requires a concrete `Float`, and an `Int` constraint requires a concrete `Int`.
Arithmetic and comparison expressions can treat `Int` and `Float` as numeric values.
Mixed arithmetic produces a `Float` result.