https://github.com/anarchymonkey/learn_golang
go programming language | beginner | advanced | comprehensive | repository | syntax | data types | concurrency | web development | interactive code examples | tutorials | challenges | practice | skills | updated regularly | latest information | best practices.
https://github.com/anarchymonkey/learn_golang
basics-of-go create-go-app go golang learn-go learn-go-webservers learn-go-with-tests learn-golang tutorial
Last synced: 4 months ago
JSON representation
go programming language | beginner | advanced | comprehensive | repository | syntax | data types | concurrency | web development | interactive code examples | tutorials | challenges | practice | skills | updated regularly | latest information | best practices.
- Host: GitHub
- URL: https://github.com/anarchymonkey/learn_golang
- Owner: anarchymonkey
- License: mit
- Created: 2023-02-19T16:11:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-25T16:24:02.000Z (almost 3 years ago)
- Last Synced: 2025-06-13T12:08:42.645Z (8 months ago)
- Topics: basics-of-go, create-go-app, go, golang, learn-go, learn-go-webservers, learn-go-with-tests, learn-golang, tutorial
- Language: Go
- Homepage: https://go.dev/doc/
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# learn_golang
This consists of all the codes in the golang tutorial ->
* Things that I have learnt
* How to create a go file
* Step 1: Create a folder `mkdir `
* Step 2: Go inside that folder & run cmd as `go mod init /`
* Step 3: Create a go module by creating a new file `[fileName].go`
* Step 4: Write some basic go code in it and to run it type `go run .` or `go run `
* Important go commands
* `go mod init`
* `go mod edit`
* `go run`
* `go test`
* `go build`
* `go install`
* Continued...