๋ฐ์ํ go22 [์ฝ๊ณ ๋น ๋ฅธ Go ์์ํ๊ธฐ] #1.2 Variables and Constants [์ถ์ฒ - Nomad Coders] Go์์ ์์๋ JavaScript์ const์ ๊ฐ๊ณ ๋ณ์๋ let ์ผ๋ก ๋ณด๋ฉด ๋๋ค. ์์๋ ๋ณ์์ง๋ง ๊ฐ์ ๋ฐ๊ฟ ์๋ ์๋ค. ๋ณ์๋ ๋ง ๊ทธ๋๋ก ๊ฐ์ ๋ฐ๊ฟ ์ ์๋ค. Go๋ Type ์ธ์ด์ด๋ค. TypeScript์ฒ๋ผ Type์ ์ ์ด ์ค์ผ ํ๋ค. package main func main() { const name string = "nico" } Type์ ์๋ชป ์ง์ ํด์ฃผ๋ฉด ์๋ฌ๊ฐ ๋ฌ๋ค. package main import "fmt" func main() { name := "nico" // ์ด๋ ๊ฒ ์ ์ธํ๋ฉด Go๊ฐ ์์์ Type์ ์ฐพ์ ์ค๋ค. name = "lynn" fmt.Println(name) } ๋์ ์ด๋ฐ ์ถ์ฝํ์ func ์์์๋ง ๊ฐ๋ฅํ๊ณ ๋ณ์์๋ง ์ ์ฉ์ด ๊ฐ๋ฅํ๋ค... 2021. 10. 26. [์ฝ๊ณ ๋น ๋ฅธ Go ์์ํ๊ธฐ] #1.0 Main Package [์ถ์ฒ - Nomad Coders] package main // Go์์๋ ์ด๋ค ํจํค์ง๋ฅผ ์ฌ์ฉํ๋์ง ์์ฑํด์ค์ผ ํ๋ค. import "fmt" // Go์์๋ "fmt"๋ผ๋ ๊ธฐ๋ณธ์ ์ธ formatting package๋ฅผ ์ ๊ณตํด ์ค๋ค. func main() { fmt.Println("Hello world!") // stdout ์ผ๋ก ํ์ค ๋ฌธ์์ด ์ถ๋ ฅ์ ์ ๊ณตํ๋ ํจ์ } 2021. 10. 26. [Golang] main.go ํ๋ก์ ํธ๋ฅผ ์ปดํ์ผํ๊ณ ์ถ์ผ๋ฉด ํ์ผ๋ช ์ ๋ฌด์กฐ๊ฑด main.go ๋ก ํด์ผ ํ๋ค. 2021. 10. 26. [Golang] Go ์ค์นํ๊ธฐ https://golang.org/doc/install Download and install - The Go Programming Language Download and install Download and install Go quickly with the steps described here. For other content on installing, you might be interested in: 1. Go download. Click the button below to download the Go installer. Download Go Don't see your operating syste golang.org ์ค์น ํ Mac ๊ธฐ์ค local ์ go < ๋ผ๋ ํด๋๊ฐ ์์ผ๋ฉด ๋๋ค. terminal.. 2021. 10. 26. ์ด์ 1 2 3 4 ๋ค์ ๋ฐ์ํ