Soliditätsstruktur
struct StructName {
uint8 text1,
uint32 text2,
uint8[3] textlist
}
StructName MyStruct = StructName(10, 300, [5, 7, 8])
// MyStruct.text1 => 10
// MyStruct.text2 => 300
// MyStruct.textlist => [5, 7, 8]
John Appleseed