Struct
Data structure, collection of different properties that are related. Very similar to object/dict.
Define
package main
type contactInfo struct {
email string
zip int
}
type person struct {
firstName string
lastName string
}
// ...