บทความ

"package XXX is not in GOROOT" when building a Go project

goland - "package XXX is not in GOROOT" when building a Go project - Stack Overflow

(_) Blank Identifier(underscore) in Golang?

What is Blank Identifier(underscore) in Golang? What is Blank Identifier(underscore) in Golang? - GeeksforGeeks // Golang program to show the compiler // throws an error if a variable is // declared but not used package main import "fmt" // Main function func main() { // calling the function // function returns two values which are // assigned to mul and div identifier mul, div := mul_div(105, 7) // only using the mul variable // compiler will give an error fmt.Println("105 x 7 = ", mul) } // function returning two // values of integer type func mul_div(n1 int, n2 int) (int, int ) { // returning the values return n1 * n2, n1 / n2 } ./prog.go:15:7: div declared and not used // Golang program to the use of Blank identifier package main import "fmt" // Main function func main() { // calling the function // function returns two values which are // assigned to mul and blank identifier mul, _ := mul_div(105, 7) // only using the mu

มาทำ gRPC Service ด้วย Go กัน

 https://medium.com/@titlebhoomtawathplinsut/%E0%B8%A1%E0%B8%B2%E0%B8%97%E0%B8%B3-grpc-service-%E0%B8%94%E0%B9%89%E0%B8%A7%E0%B8%A2-go-%E0%B8%81%E0%B8%B1%E0%B8%99-866d7452f5dd

ภาษา Go

  https://golang.org/ ภาษา Go ตอน 1 ติดตั้ง และ Run Hello World