Structs

suggest change

A structure groups multiple values into a single entity.

Zero value of struct is a struct whose fields are set to their respective zero values.

Struct basics:

type MyStruct struct {
	IntVal           int
	StringVal        string
	unexportedIntVal int
}

Learn more about structs.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents