main.go 179 字节
Newer Older
A
astaxie 已提交
1 2 3 4 5 6 7 8 9 10 11 12 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))
}