go-tour/imports.go

11 lines
123 B
Go
Raw Permalink Normal View History

2020-02-05 03:44:36 +00:00
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("Now you have %g problems.\n", math.Sqrt(7))
}