Structs¶
Definition¶
struct supports export, struct fields support export. struct fields are exported per-module.
struct default values are evaluated at the time of struct instantiation.
Instantiation¶
# positional style
person = Person("aspizu", 21)
# keyword style
person = Person(name: "aspizu", age: 21)