Sign in
go
/
website
/
dd8acb4c96edcd69706f19304941679dcb3822b0
/
.
/
tour
/
content
/
flowcontrol
/
exercise-loops-and-functions.go
blob: 68c334d1c7c9ca2b944a197410749412ef9a5906 [
file
] [
log
] [
blame
]
// +build no-build OMIT
package main
import (
"fmt"
)
func Sqrt(x float64) float64 {
}
func main() {
fmt.Println(Sqrt(2))
}