Skip to content

Instantly share code, notes, and snippets.

@minhphong306
Last active April 5, 2020 04:35
Show Gist options
  • Save minhphong306/4dc7f9d720203427c9ab7bb749c0eb12 to your computer and use it in GitHub Desktop.
Save minhphong306/4dc7f9d720203427c9ab7bb749c0eb12 to your computer and use it in GitHub Desktop.
hin_xinh_gai.go
package main
import (
"fmt"
)
func hienCoXinhGaiKhong() {
fmt.Println("Hien rat xinh gai")
}
func main() {
go hienCoXinhGaiKhong()
fmt.Println("Good bye")
}
--- output
Good bye
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment