Skip to content

Instantly share code, notes, and snippets.

@bmizerany
Created December 1, 2010 00:10
Show Gist options
  • Save bmizerany/722690 to your computer and use it in GitHub Desktop.
Save bmizerany/722690 to your computer and use it in GitHub Desktop.
ch := make(chan ResponseType)
go func() {
ch <- doSomething
}()
resp := doOtherThings()
doFinalThings(resp, <-ch)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment