Golang (Go) Tutorial - Structs - Custom Types
๐๏ธ Structs - Objects Banao
Real Life:
๐ค Student: name, age, class, marks
๐ Car: brand, model, color, price
๐ฑ Phone: brand, model, ram, storage
Syntax
type Person struct {
Name string
Age int
City string
} Example
type Student struct {
Name string
Age int
Class string
}