[Go] Go 설치 및 기초
·
개발/Go
1. Go 설치 https://go.dev/ The Go Programming Language DevOps & Site Reliability With fast build times, lean syntax, an automatic formatter and doc generator, Go is built to support both DevOps and SRE. go.dev 여기서 최신버전 설치 후 VS code 확장프로그램에서 Go를 검색하여 설치해주면 된다. 2. go 파일 만들어보기 하나의 폴더를 정한 후 hello.go 파일 생성 후 아래 코드 작성 package main import "fmt" func main() { fmt.Println("Hello World") } 3. go 파일 실행시키기 (1..