compileFuncDecl remove param: call bool

This commit is contained in:
xushiwei
2024-05-15 16:40:10 +08:00
parent 278ebbc9bd
commit c2e5a78076
6 changed files with 16 additions and 9 deletions

10
cl/_testpy/pi/in.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import (
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/py/math"
)
func main() {
c.Printf(c.Str("pi = %f\n"), math.Pi)
}