talks/2015/06-devnation-golang-good-ba.../good1.go

21 lines
225 B
Go
Raw Normal View History

2015-06-11 22:28:27 +00:00
// +build ignore
package main
// START1 OMIT
// exported
type Foo struct {
Bar string // exported
baz bool // private
}
// private
type bif struct {
Harf, Buz int64 // doesn't matter
}
// STOP1 OMIT
func main() {
}