1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2025-05-24 13:52:30 +00:00

symlinks to save space

from `go get github.com/vbatts/freezing-octo-hipster/cmd/dups`
I ran `dups -s .`

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2018-09-03 19:36:41 -04:00
parent 5329804f93
commit 6c96557cc6
Signed by: vbatts
GPG key ID: 10937E57733F1362
34 changed files with 24 additions and 598 deletions

View file

@ -1,56 +0,0 @@
// +build ignore
package main
import "fmt"
func main() {
// START1 OMIT
infos := map[string]Info{
"Michael": Info{
City: "Happyville",
Status: Open,
},
"Jan": Info{
City: "Confusville",
Status: Closed,
},
"Sean": Info{
City: "Septober",
Status: Complicated,
},
"Silvia": Info{
City: "Curiousville",
Status: Curios,
},
}
for name, info := range infos {
fmt.Printf("%q is %s in %q\n", name, info.Status, info.City)
}
// STOP1 OMIT
}
type Info struct {
City string
Status Status
}
type Status int
var (
Open = Status(0)
Closed = Status(1)
Complicated = Status(2)
Curios = Status(3)
)
func (s Status) String() string {
switch s {
case Open:
return "open"
case Closed:
return "closed"
case Complicated:
return "complicated"
}
return "hurr"
}

View file

@ -0,0 +1 @@
../02-devconf.cz/primitive2.go