1
0
Fork 0
mirror of https://github.com/vbatts/talks.git synced 2025-06-03 10:32:30 +00:00

files from getdown that need to be reconciled

This commit is contained in:
Vincent Batts 2018-09-14 12:55:35 -04:00
parent 8e251effd9
commit 6943db29ba
36 changed files with 1297 additions and 0 deletions

View file

@ -0,0 +1,46 @@
package main
import (
"fmt"
"time"
)
const (
IN_UTERO = iota
NEW_BORN
GROWING
LIVING
DYING
DEAD
)
type Person struct {
Name string
Dob *time.Time
State byte
}
func (p *Person) DobString() string {
if (p.Dob == nil) {
return ""
}
return p.Dob.String()
}
func (p *Person) ComeToLife() {
t := time.Now()
p.Dob = &t
p.State = NEW_BORN
}
func main() {
// START OMIT
p := Person{Name: "John Doe", State: IN_UTERO}
fmt.Printf("%s, %s\n", p.Name, p.DobString())
p.ComeToLife()
fmt.Printf("%s, %s\n", p.Name, p.DobString())
// STOP OMIT
}