개발일기/go
[go]go lang 시작하기
탐요
2021. 8. 2. 14:15
1. 설치하기
운영체제에 따라 프로그램 설치
Downloads - The Go Programming Language
Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases
golang.org
2. 환경변수 설정
윈도우 시스템 환경변수 -> 사용자 변수
3. hello, world! 프린트하기
package main
import "fmt"
func main(){
fmt.Println("Hello, World!")
}
hello world는 항상 짜릿하다