기본 문법
package main
import (
"fmt"
"time"
"math/rand"
)
func main() {
fmt.Println("Hello, world")
fmt.Println("The time is", time.Now())
fmt.Println("My favorite number is", rand.Intn(10))
}
import / export
함수
변수
반복문, 조건문
포인터
구조체, 배열, 슬라이스
Methods(Go에서의 클래스)