Go(go lang) 기본

go lang : Setting and IDE(VS Code) go lang install

vipDeveloper 2021. 3. 2. 15:17
반응형

자 일단 Go를 다운 받아보자!

일단 필자의 OS는 Mac 이다!

 

Go Lang 설치하는 방법

1. 구글에 golang 검색하기

2. golang.org  사이트로 접속!

 

The Go Programming Language

Download Go Binary distributions available for Linux, macOS, Windows, and more. // You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, 世界") } Hello, World! Conway's Game of Life Fibonacci

golang.org

3. 메인 페이지에 귀여운 마스코트와 download go 버튼이 존재한다!

golang main page

4. 자신의 OS에 맞는 버전을 다운로드 해보자

golang download page

필자는 ide(개발환경, 프로그래밍 툴) 로 vscode 를 사용할 예정이다.  VS Code 도 설치해보자!

 

VS Code 설치하는 방법

1. VS Code site로 접속하기 

code.visualstudio.com

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

2. OS에 맞는 버전 선택 후 Download

 

반응형