Files
llgo/doc/_readme/llgo_call_cmath/call_cmath.go

8 lines
106 B
Go
Raw Normal View History

2024-11-06 10:28:08 +08:00
package main
import "github.com/goplus/llgo/c/math"
func main() {
println("sqrt(2) =", math.Sqrt(2))
}