blob: 0e7be4c017c98e2c3ccb893b706c35b5619920ef [file] [log] [blame]
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")
}