forked from codegangsta/essential-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 1: Create README Issue 3: Add instructions on installing Go
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# essential-go | ||
|
||
 | ||
 | ||
|
||
## 📦 Installation | ||
|
||
- [Download](https://go.dev/dl/) the binary release suitable for your system | ||
- Start [installation](https://go.dev/doc/install) process by selecting the | ||
tab for your computer's operating system | ||
|
||
For more indepth installation process: | ||
- For [Windows](https://www.youtube.com/watch?v=kxD8p-aPYzM) | ||
- For [Linux](https://www.youtube.com/watch?v=nQPdj4Z25Js) | ||
- For [Mac](https://www.youtube.com/watch?v=dgIh-VYcWYw&pp=ygUZaG93IHRvIGluc3RhbGwgZ29sYW5nIG1hYw%3D%3D) | ||
|
||
## 📄 Table of content | ||
|
||
- [First go program](./your-first-go-program/main.go) | ||
- [Functions](./functions/main.go) | ||
- [Variables](./variables/main.go) | ||
- [Types](./types/main.go) | ||
- [Arrays and Slices](./arrays-and-slices/main.go) | ||
- [Maps](./maps/main.go) | ||
- [Pointers](./pointers/main.go) | ||
- [Control structures](./control-structures/main.go) | ||
- [Pub](./pub/main.go) | ||
- [Interfaces](./interfaces/main.go) | ||
- [JSON parser](./json-parser/main.go) | ||
- [HTTP file server](./http-file-server/main.go) |