Go는 구글이 개발한 프로그래밍 언어입니다. Go에는 가비지 컬렉션(GC)이 있으며 병행성(concurrent)를 제공합니다.
https://golang.org/ Go언어 공식 홈페이지
https://golang.org/doc/install Go언어 다운로드
// file : helloword.go // go run hellowrod package main import "fmt" func main() { fmt.Println("Hello, 世界") }