Files
build-web-application-with-…/zh-tw/src/1.2/main.go
2019-02-26 01:40:54 +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))
}