From b3742941da4be2ccdca3bf16bfb799bdb8369b90 Mon Sep 17 00:00:00 2001 From: y-hatano-github <49466160+y-hatano-github@users.noreply.github.com> Date: Wed, 10 Apr 2019 17:28:24 +0900 Subject: [PATCH] Create README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3980545 --- /dev/null +++ b/README.md @@ -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 +``` +