Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Types Reference

This page collects the core Sydrogen types and points to the detailed language sections.

TypeDescriptionDetails
NumberNumeric type categorySee Types
IntInteger valueSee Integers
FloatFloating-point valueSee Floating-Point Numbers
WeldString valueSee Strings
StringAlias of WeldSee Strings
Bool / BooleanBoolean valueSee Types
Ore[...]Fixed-size arraySee Types
Ore(...)Tuple with named fieldsSee Types
Materials TList typeSee Types
GenericGeneric list element typeSee Types

Notes

  • Bool and Boolean are treated as the same type.
  • Arrays use Ore with a fixed size.
  • Lists use Materials and 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.

← Previous Next →