1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2025-06-02 01:52:30 +00:00

2016-12: brush up this talk for an intro

This commit is contained in:
Vincent Batts 2016-12-04 18:40:58 -05:00
parent 1b8e5c7a36
commit 68f582d393
18 changed files with 513 additions and 0 deletions

View file

@ -0,0 +1,20 @@
// +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() {
}