Skip to content

Instantly share code, notes, and snippets.

@Poincare
Created November 9, 2013 16:02
Show Gist options
  • Save Poincare/7386881 to your computer and use it in GitHub Desktop.
Save Poincare/7386881 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func wait() {
//wait around with a forever loop
for {
}
}
func main() {
go wait()
fmt.Println("We didn't wait because it was called as a goroutine!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment