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
+17
View File
@@ -0,0 +1,17 @@
# Naming Conventions
Identifier capitalization has no language-defined meaning.
Values, constraints, schemas, and derived configurations are all expressions of the same kind.
For readability, the following conventions are recommended:
- Object values: `lower_snake`
- Functions: `lowerCamel`
- Primitives, schemas, and abstract constraints: `UpperCamel`
```dcdl
Port = Int & >= 1;
Service = { port = Port; };
service = { port = 8080; } as Service;
mkService = (port: Port) => { port = port; };
```