Run "go fmt" on all .go files

This commit is contained in:
John Gosset
2014-12-09 09:04:26 -05:00
parent 19cbebee5e
commit ac49ca7392
20 changed files with 380 additions and 379 deletions

View File

@@ -10,7 +10,7 @@ func isPrimeNumber(possiblePrime int) bool {
}
func findPrimeNumbers(channel chan int) {
for i := 2; /* infinite loop */ ; i++ {
for i := 2; ; /* infinite loop */ i++ {
// your code goes here
assert(i < 100) // i is afraid of heights

View File

@@ -20,6 +20,7 @@ const (
__float32__ float32 = -1.0
__delete_me__ bool = false
)
var __runner__ runner = nil
func TestKoans(t *testing.T) {