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

5.1 Struct Declaration

A Struct declaration consists of optional modifier keywords, followed by the struct keyword, it's identifier and then its body.

export struct MyStruct 
{
    // Struct Body
}

A Struct body can consist of functions, fields and properties.