Basic types / Structures / Essential Go
package main
type MyStruct struct {
IntVal int
StringVal string
unexportedIntVal int
}
func main() {
// do nothing
}INFO
package main
type MyStruct struct {
IntVal int
StringVal string
unexportedIntVal int
}
func main() {
// do nothing
}