Skip to content

Instantly share code, notes, and snippets.

@akira093
Created March 30, 2014 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akira093/9868835 to your computer and use it in GitHub Desktop.
Save akira093/9868835 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
func main() {
ch := make(chan string)
go func(ch chan string) {
<-ch
fmt.Println("ふぅ")
}(ch)
ch <- "アッー"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment