mirror of
https://github.com/vbatts/talks.git
synced 2024-11-15 21:28:36 +00:00
12 lines
158 B
Go
12 lines
158 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
// START OMIT
|
|
for i := 0; i < 5; i++ {
|
|
defer fmt.Printf("%d ", i)
|
|
}
|
|
fmt.Println("HOOTY HOO!")
|
|
// STOP OMIT
|
|
}
|