From 07fa8883a9d35237571312a2b764a458b2e2fed7 Mon Sep 17 00:00:00 2001 From: Steven Degutis Date: Sat, 10 Mar 2012 12:58:18 -0600 Subject: [PATCH] cleanup --- README.md | 23 +++++++++++++++++++++++ goans_test.go => basics.go | 2 +- setup_koans_test.go | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 README.md rename goans_test.go => basics.go (78%) diff --git a/README.md b/README.md new file mode 100644 index 0000000..6dc9aa6 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +## Go Koans + +Want to learn Go? Want to do it easily? Want to have fun with it? Want lots of money? + +I can't help you out with that last one. Sorry. + +### Install + + $ export GOPATH=~/projects/go # and add this to your ~/.profile + $ mkdir -p ~/projects/go/src + $ cd ~/projects/go/src + + $ git clone https://sdegutis@github.com/sdegutis/go-koans.git + $ cd go-koans + +### Usage + + $ go test + +### More fun usage + + $ brew install https://raw.github.com/sdegutis/fswatch/master/brew_formula/fswatch.rb + $ fswatch . go test diff --git a/goans_test.go b/basics.go similarity index 78% rename from goans_test.go rename to basics.go index 3b4fb51..eebdd37 100644 --- a/goans_test.go +++ b/basics.go @@ -1,4 +1,4 @@ -package goans +package go_koans func testBasics() { assert(__ == true) // what is truth? diff --git a/setup_koans_test.go b/setup_koans_test.go index b1c76e5..a708f3b 100644 --- a/setup_koans_test.go +++ b/setup_koans_test.go @@ -1,4 +1,4 @@ -package goans +package go_koans import ( "testing"