box-o-sand/gotime/src/meatballhat.com/gotour-artifacts/goroutines/main.go

19 lines
225 B
Go
Raw Normal View History

2012-10-23 22:32:24 +00:00
package main
import (
"fmt"
"time"
)
func say(s string) {
for i := 0; i < 5; i++ {
time.Sleep(100 * time.Millisecond)
fmt.Println(s)
}
}
func main() {
go say("world")
say("hello")
}