mirror of
https://github.com/vbatts/talks.git
synced 2024-11-16 05:28:37 +00:00
20 lines
225 B
Go
20 lines
225 B
Go
// +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() {
|
|
}
|