Sign in
go
/
website
/
61f76368323bc93373ac67b7c759a353521fa642
/
.
/
_content
/
tour
/
flowcontrol
/
if.go
blob: 1d6d841dbc5758b24717396f58d7c16e36b12d01 [
file
] [
log
] [
blame
]
// +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))
}