Skip to content

Instantly share code, notes, and snippets.

View droxer's full-sized avatar
🎯
Focusing

Fei He droxer

🎯
Focusing
  • Internet
  • 15:16 (UTC +08:00)
View GitHub Profile
@droxer
droxer / channel-select.go
Created June 12, 2013 15:29
Goroutine channel with select
package main
import (
"fmt"
"math/rand"
"time"
)
func boring(msg string) <-chan string {
c := make(chan string)
@droxer
droxer / multiplex.go
Last active December 18, 2015 10:09
goroutine with multiplex
package main
import (
"fmt"
"math/rand"
"time"
)
func boring(msg string) <-chan string {
c := make(chan string)