- ๊ต์ฌ : Tucker์ Go ์ธ์ด ํ๋ก๊ทธ๋๋ฐ - ๊ฐ์ : https://www.inflearn.com/course/go%EC%96%B8%EC%96%B4#curriculum - ์์ ๊น : https://github.com/tuckersGo/musthaveGo ๊ฐ๋ฐ ํ๊ฒฝ ๊ตฌ์ถ 1) ์๋์ฐ ๊ฐ๋ฐ ํ๊ฒฝ ๊ตฌ์ถ GO์ธ์ด ์ค์น -> ๊น ์ค์น -> VScode ์ค์น -> VScode์ extensions๋ก go ์ค์น 2) VScode๋ก ์ฝ๋ ์คํ ๋ฐฉ๋ฒ package main import "fmt" func main() { fmt.Println("Hello World!") } ํฐ๋ฏธ๋ ์ ๋ ฅ : cd hello -> go mod init goproject\hello -> go build -> .\hello.exe 3)..