package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
- 000. Hello, Go!
- 001. 기본 문법
- 002. 자료형
- 003. 변수
- 004. 상수와 리터럴
- 005. 연산자
- 006. 제어문 [미완]
- 007. 반복문
- 008. 함수
- 009. 선언 위치에 따른 생명주기
- 010. String Type
- 011. Array Type
- 012. Pointer Type
- 013. Structure Type
- 014. Slice Type
- 015. Map Type
- 016. Casting
- 017. Interface Type
- 018. Error Type
- 019. defer
- 020. panic
- 021. recover
- 022. Goroutine
- 023. Channel Type