Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shimabox/study-go
https://github.com/shimabox/study-go
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/shimabox/study-go
- Owner: shimabox
- Created: 2022-02-23T23:21:05.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-14T11:02:35.000Z (almost 3 years ago)
- Last Synced: 2024-06-19T21:54:48.964Z (6 months ago)
- Language: Go
- Size: 68.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# study-go
[A Tour of Go](https://go.dev/tour/list "A Tour of Go") をやっていき。
## 環境作成
```
$ make build
```
or
```
$ docker-compose up -d --build
```## 環境に入る
```
$ make in
```
or
```
$ docker-compose exec go bash
```## 実行
```
# 環境に入ってから
go run hello.go
```