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

@@ -14,7 +14,7 @@ func aboutPointers() {
a := 3
b := &a // 'b' is the address of 'a'
*b = *b + 2 // de-referencing 'b' means acting like a mutable copy of 'a'
*b = *b + 2 // de-referencing 'b' means acting like a mutable copy of 'a'
assert(a == __int__) // pointers seem complicated at first but are actually simple
}