An open API service indexing awesome lists of open source software.

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.

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...