Quick actions

cmd+k|ctrl+k

Navigation

Languages

Basic types / Structures / Essential Go

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T10:02:50Z

Updated

2019-03-26T10:02:50Z

package main

type MyStruct struct {
	IntVal           int
	StringVal        string
	unexportedIntVal int
}

func main() {
	// do nothing
}
INFO