mirror of
https://github.com/vbatts/talks.git
synced 2025-10-27 02:36:43 +00:00
flatten folder
This commit is contained in:
parent
5783dd7f09
commit
ffd598d420
12 changed files with 15 additions and 12 deletions
56
2015/02-devconf.cz/primitive2.go
Normal file
56
2015/02-devconf.cz/primitive2.go
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
// +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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue