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

https://github.com/at-grandpa/study-a-tour-of-go

Study A Tour of Go
https://github.com/at-grandpa/study-a-tour-of-go

a-tour-of-go golang study tour-of-go

Last synced: about 1 month ago
JSON representation

Study A Tour of Go

Awesome Lists containing this project

README

        

# Study A Tour of Go

[A Tour of Go](https://go-tour-jp.appspot.com/welcome/1)

# Usage

## Setup Docker Container

```
$ make setup
```

## Initialize all files

```
$ make initialize
```

## Compile and run Go program

```
$ make go/run SRC=01.using-the-tour/01.welcome/01.hello-world/hello.go
docker exec -it study-a-tour-of-go /bin/bash -c "go run 01.using-the-tour/01.welcome/01.hello-world/hello.go"
Hello!!!, δΈ–η•Œ
```