https://github.com/giannisp/learn-go
Learning go by examples
https://github.com/giannisp/learn-go
Last synced: about 1 year ago
JSON representation
Learning go by examples
- Host: GitHub
- URL: https://github.com/giannisp/learn-go
- Owner: giannisp
- Created: 2019-11-02T09:26:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-02T09:26:45.000Z (over 6 years ago)
- Last Synced: 2024-04-27T06:20:41.002Z (about 2 years ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
Following the examples from https://gobyexample.com/
## Install go
```sh
brew install go
```
## Check go version
```sh
go version
```
## Init a new go project
```sh
go mod init github.com/giannisp/learn-go
```