Files

11 lines
155 B
Go
Raw Permalink Normal View History

2024-11-06 10:28:08 +08:00
package main
import _ "unsafe" // for go:linkname
//go:linkname Sqrt C.sqrt
func Sqrt(x float64) float64
func main() {
println("sqrt(2) =", Sqrt(2))
}