https://github.com/cleanmachine1/go-code
Feel free to add some more code with comments for others to learn
https://github.com/cleanmachine1/go-code
go
Last synced: 12 months ago
JSON representation
Feel free to add some more code with comments for others to learn
- Host: GitHub
- URL: https://github.com/cleanmachine1/go-code
- Owner: CleanMachine1
- License: gpl-2.0
- Created: 2021-08-10T19:25:55.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-12-16T00:02:08.000Z (over 4 years ago)
- Last Synced: 2025-06-02T18:48:17.988Z (about 1 year ago)
- Topics: go
- Language: Go
- Homepage:
- Size: 94.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go-Code
A Go supporting compiler is required.
One method to run is
`go run ./file.go`
or you can compile with
`go build ./file.go`
then execute with
`./file`
## What helped me:
Knowing some basic C concepts helped a lot, since it has a C-like feel to it, while still being fun and easy to write
However here are some books and guides I used, referenced, and read.
https://assets.digitalocean.com/books/how-to-code-in-go.pdf
https://www.tutorialspoint.com/go/index.htm
https://www.w3schools.com/go/index.php
https://tour.golang.org/welcome/1
Here are some places which also provide guides, some I haven't seen.
https://github.com/EbookFoundation/free-programming-books/blob/master/courses/free-courses-en.md#go
https://github.com/EbookFoundation/free-programming-books/blob/master/books/free-programming-books.md#go
Hope this helps someone who is looking for some guides rather than non-explaining unhelpful links.
Also, sorry if you expected some video links, I learn by doing and reading.