Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created August 2, 2020 07:20
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 luandevpro/82f7035b189b88f6bdcc73c8acd8be33 to your computer and use it in GitHub Desktop.
Save luandevpro/82f7035b189b88f6bdcc73c8acd8be33 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
func main() {
ch := make(chan int , 1)
ch <- 10
fmt.Println("hello main ")
}
hello main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment