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
- Host: GitHub
- URL: https://github.com/at-grandpa/study-a-tour-of-go
- Owner: at-grandpa
- Created: 2017-07-17T01:53:44.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-13T20:44:22.000Z (over 7 years ago)
- Last Synced: 2025-02-05T21:40:58.642Z (3 months ago)
- Topics: a-tour-of-go, golang, study, tour-of-go
- Language: Go
- Size: 334 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!!!, δΈη
```