예제 #1
0
func Sqrt(b float64) float64 {
	return float64(C.sqrt(C.double(b)))
}
예제 #2
0
파일: math.go 프로젝트: NONFish/goc2p
func Sqrt(p float32) (float32, error) {
	result, err := C.sqrt(C.double(p))
	return float32(result), err
}
예제 #3
0
파일: main.go 프로젝트: sunvim/codelab
func main() {
	C.sayHi()
	fmt.Println("sqrt:", C.sqrt(4))
}