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