modify 07.1.md

This commit is contained in:
chidouhu
2013-11-20 14:50:00 +08:00
parent 8545fa5ca3
commit 9dbd1c5d2a
10 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package main
import "fmt"
func fp(a *[3]int) { fmt.Println(a) }
func main() {
for i := 0; i < 3; i++ {
fp(&[3]int{i, i * i, i * i * i})
}
}