This commit is contained in:
Steven Degutis
2012-03-10 12:58:18 -06:00
parent 4c5e766472
commit 07fa8883a9
3 changed files with 25 additions and 2 deletions

23
README.md Normal file
View File

@@ -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

View File

@@ -1,4 +1,4 @@
package goans
package go_koans
func testBasics() {
assert(__ == true) // what is truth?

View File

@@ -1,4 +1,4 @@
package goans
package go_koans
import (
"testing"