Types Reference
This page collects the core Sydrogen types and points to the detailed language sections.
| Type | Description | Details |
|---|---|---|
Number | Numeric type category | See Types |
Int | Integer value | See Integers |
Float | Floating-point value | See Floating-Point Numbers |
Weld | String value | See Strings |
String | Alias of Weld | See Strings |
Bool / Boolean | Boolean value | See Types |
Ore[...] | Fixed-size array | See Types |
Ore(...) | Tuple with named fields | See Types |
Materials T | List type | See Types |
Generic | Generic list element type | See Types |
Notes
BoolandBooleanare treated as the same type.- Arrays use
Orewith a fixed size. - Lists use
Materialsand support methods such as.Add(...),.Remove(...), and.RemoveAt(...). - The current implementation is still limited: generic storage is constrained, and data/object declarations are not yet executable in the backend.