build: separate compiler and libs
This commit is contained in:
11
compiler/cl/_testlibgo/math/in.go
Normal file
11
compiler/cl/_testlibgo/math/in.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"math"
|
||||
)
|
||||
|
||||
func main() {
|
||||
println(math.Sqrt(2))
|
||||
println(math.Abs(-1.2))
|
||||
println(math.Ldexp(1.2, 3))
|
||||
}
|
||||
Reference in New Issue
Block a user