repository
0.0.0-20240214145629-91a086675ada
Repository: https://github.com/garbagego/go-tour.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# README
Golang-tutorial
Ref:
- Why golang ? more details are here
- Install golang
- Golang Blog
- Golang forum
- Language Specification
- Packages
- Learn by examples
- builtin package
- golang blog series
- Learn Go with TDD
- web devlopment gobook
- articles how to code in Go
- Go Podcast
- network programming with Go
- Go web programming
- Golang Talks
- Design patern
Basics:
This is a beginners tutorial for the Go programming language. Follow the documentation available here golang.org. Go is a general-purpose language designed with systems programming in mind. It is strongly typed and garbage-collected and has explicit support for concurrent programming. Programs are constructed from packages, whose properties allow efficient management of dependencies.
Concepts
- GOPATH vs GOROOT
- writing comments
- array, slice
- map
- control statement and loop
- the blank identifier
- functions
- method
- package
- pointers
- struct
- interface