Skip to content

Instantly share code, notes, and snippets.

@ersiner
Created May 24, 2014 07:15
Show Gist options
  • Save ersiner/4d811fa273fd73f89baa to your computer and use it in GitHub Desktop.
Save ersiner/4d811fa273fd73f89baa to your computer and use it in GitHub Desktop.
Hello World with Goroutines and Channels in Go
package main
import "fmt"
func main() {
c := make(chan string)
go func() {
n := <-c
c <- "Hello " + n
}()
c <- "World"
g := <-c
fmt.Println(g)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment