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

@@ -2,7 +2,7 @@ package go_koans
func aboutInterfaces() {
mspaint := &program{3} // mspaint is a kind of *program, which is a valid 'runner'
runOnce(mspaint) // runOnce takes an abstract 'runner' type
runOnce(mspaint) // runOnce takes an abstract 'runner' type
assert(mspaint.runTimes == __int__) // conformed interfaces need not be declared, they are inferred
}