mirror of
https://github.com/vbatts/talks.git
synced 2025-01-13 17:10:08 +00:00
13 lines
158 B
Go
13 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
|
||
|
}
|