mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-22 20:56:02 +03:00
28 lines
452 B
Go
28 lines
452 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type Ball struct{ hits int }
|
||
|
|
||
|
func main() {
|
||
|
table := make(chan *Ball)
|
||
|
go player("ping", table)
|
||
|
go player("pong", table)
|
||
|
table <- new(Ball) // game on; toss the ball
|
||
|
time.Sleep(1 * time.Second)
|
||
|
<-table // game over; grab the ball
|
||
|
}
|
||
|
|
||
|
func player(name string, table chan *Ball) {
|
||
|
for {
|
||
|
ball := <-table
|
||
|
ball.hits++
|
||
|
fmt.Println(name, ball.hits)
|
||
|
time.Sleep(100 * time.Millisecond)
|
||
|
table <- ball
|
||
|
}
|
||
|
}
|