Files
build-web-application-with-…/src/1.2/main.go
2012-09-20 14:59:35 +08:00

14 lines
166 B
Go

// 章节 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))
}