Sign in
go
/
tour
/
ad2a543973228410057dd779f91448286751d862
/
.
/
content
/
flowcontrol
/
if.go
blob: 1d6d841dbc5758b24717396f58d7c16e36b12d01 [
file
]
// +build OMIT
package main
import (
"fmt"
"math"
)
func sqrt(x float64) string {
if x < 0 {
return sqrt(-x) + "i"
}
return fmt.Sprint(math.Sqrt(x))
}
func main() {
fmt.Println(sqrt(2), sqrt(-4))
}