blob: 68c334d1c7c9ca2b944a197410749412ef9a5906 [file] [log] [blame]
Andrew Gerrand3f151382016-01-13 13:43:18 +11001// +build no-build OMIT
Andrew Gerrand8775c8e2014-02-24 14:28:32 +11002
Andrew Gerrand009a79d2013-01-23 17:39:23 +11003package main
4
5import (
6 "fmt"
7)
8
9func Sqrt(x float64) float64 {
10}
11
12func main() {
13 fmt.Println(Sqrt(2))
14}