-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5bec64
commit b374294
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# 4-in-a-row-go | ||
CLI game '4-in-a-row' written in go. | ||
|
||
## What is 4-in-a-row? | ||
https://en.wikipedia.org/wiki/Four-in-a-row | ||
|
||
## How to get and run the code. | ||
### 1st step | ||
Get the code. | ||
``` | ||
go get -d github.com/y-hatano-github/4-in-a-row-go | ||
``` | ||
### 2nd step | ||
Change directory to the source code directory. | ||
``` | ||
cd $GOPATH/src/github.com/y-hatano-github/4-in-a-row-go | ||
``` | ||
### 3rd step | ||
Run the code. | ||
``` | ||
go run main.go | ||
``` | ||
|