14 lines
179 B
Go
14 lines
179 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))
|
|
}
|