Struct in Verse
Struct is short for structure, and is a way to group several related variables together. Any variables can be grouped, including variables of different types.
[

Click image to enlarge.
| ``` | |
Position := coordinates{X := 1.0, Y := 1.0} Position := coordinates{X := 1.0, Y := 1.0} Copy full snippet(1 line long) |
Instantiating a struct: You can construct an instance of a struct from an archetype. An archetype defines the values of a struct’s fields. |
Position.X Position.X Copy full snippet(1 line long) |
Accessing fields on a struct: You can access a struct’s fields to get their value by adding . between the struct instance and the field name. |
You're reading a preview
The full reference is free for BrainDeadGuild Discord members — sign in to read it all, or open the original at the source.
Sign in with your BrainDead.TV / BrainDeadGuild Discord account for full access.