티스토리 뷰
반응형
Characteristic
- Simple
- Fast compiling speed, Cross-compiling
- Concurrency
- Goroutine - Execution
- Chanel - Communication
- Select - Coordination
- Error Handling
val, er := Get()
if err =! nil {
//error handling
}
Go keywords
break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var
Install Go [link]
Init mode `go mod init <name>`
Hello World
Terminal : `mkdir helloworld`
package main
import "fmt"
func main() {
fmt.Println("Hello, World")
}
To rn : `go run helloworld`
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 파이썬
- Binary
- 한빛미디어
- Kubernetes
- Fine-Tuning
- docker
- go
- Gemma
- 나는리뷰어다
- K8S
- lllm
- leetcode
- error
- 키보드
- kubernetes context
- feed-forward
- collator
- book
- 책리뷰
- Shell
- LLM
- csv
- Algorithm
- Python
- kubens
- BASIC
- AWS
- Git
- Container
- palindrome
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
글 보관함
반응형