gofmt -l -w -tabs=false -tabwidth=2 *

This commit is contained in:
Steven Degutis
2012-03-16 10:43:33 -05:00
parent 0d62c739d6
commit ce4ffc8a43
11 changed files with 23 additions and 23 deletions

View File

@@ -3,7 +3,7 @@ package go_koans
import "fmt"
func aboutStrings() {
assert("a" + __string__ == "abc") // string concatenation need not be difficult
assert("a"+__string__ == "abc") // string concatenation need not be difficult
assert(len("abc") == __int__) // and bounds are thoroughly checked
assert("abc"[0] == __byte__) // their contents are reminiscent of C

View File

@@ -1,13 +1,13 @@
package go_koans
import (
"testing"
"os"
"fmt"
"runtime"
"io/ioutil"
"os"
"path"
"runtime"
"strings"
"testing"
)
var __string__ string = "impossibly lame value"