modify the dir

This commit is contained in:
astaxie
2014-12-14 23:18:20 +08:00
parent c9fc231460
commit 97738ec2a7
205 changed files with 16 additions and 32 deletions

13
zh/src/1.2/main.go Normal file
View File

@@ -0,0 +1,13 @@
// 章节 1.2
// $GOPATH/src/mathapp/main.go
package main
import (
"fmt"
"mymath"
)
func main() {
fmt.Printf("Hello, world. Sqrt(2) = %v\n", mymath.Sqrt(2))
}