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

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

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