Go References

처음 Go에 입문하는 사람들을 위한 레퍼런스

A Tour of Go

https://go.dev/tour/welcome/1

매우 간단하게 튜토리얼 형식으로 Go를 찍먹 해볼 수 있는 공식 리소스. Hello world부터 차근차근 Go의 맛을 느껴본다.

Effective Go

https://go.dev/doc/effective_go

Go 언어의 문법을 배울 수 있는 가장 좋은 레퍼런스 자료. 이 자료 하나만 봐도 바로 Go로 코딩을 시작할 수 있다. 다른 개념들은 차차 익혀가면 될 정도로 나름 자세함.

Learn Go with Tests

https://quii.gitbook.io/learn-go-with-tests

테스트 주도 개발 방법론으로 Go 언어를 학습할 수 있는 자료. 한국어도 제공된다.

  • Install, hello world

  • basic types: ints, arrays and slices etc

  • Pointers and errors

  • DI

  • Mock

  • Sync, concurrency etc

예제로 배우는 Go 프로그래밍

http://golang.site/Go/Basics

Go 언어 문법을 익힐 수 있다. 한국어.

An Introduction of Go

https://go101.org/article/introduction.html

필요할 때마다 꺼내볼 수 있는 참고용 자료

Go/Golang Memory Management

https://syntaxsugar.tistory.com/entry/Golang-Memory-Management

Go 언어의 메모리에 대해 알고 싶을 때 시작하면 좋을 자료.

A Guide to the Go Garbage Collector

https://tip.golang.org/doc/gc-guide

Go의 GC에 대해 깊이 알고 싶다면 한번 꼭 읽어보면 좋을 자료.

Go Quizzes 101

https://go101.org/quizzes/101.html

퀴즈를 풀며 Go를 익혀보자

Last updated