©techort.comStructsStruct is a collection of fields.Syntaxtype User struct { username string email string phone string }var u1 UserInitializing StructsStruct can be initialized using new keyword which will initialize fields with 0or in below manner, … [Read more...] about Composite types: Structs