Skip to content

Instantly share code, notes, and snippets.

@minhphong306
Created June 7, 2020 03:02
Show Gist options
  • Save minhphong306/fce0b88027b2fbcc801b6608f453b001 to your computer and use it in GitHub Desktop.
Save minhphong306/fce0b88027b2fbcc801b6608f453b001 to your computer and use it in GitHub Desktop.
colam_thimoi_coan_v2.go
package main
import (
"fmt"
)
func main() {
unbuffer := make(chan string)
unbuffer <- "Có làm thì mới có ăn"
go func(){
fmt.Println(<-unbuffer)
}()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment