go-tour/imports.go
2020-02-04 21:44:36 -06:00

11 lines
123 B
Go

package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("Now you have %g problems.\n", math.Sqrt(7))
}