Co-authored-by: xgopilot <noreply@goplus.org>
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
luoliwoshang
2025-11-06 20:54:41 +08:00
parent 41b403aef7
commit 4e374a99ff
7 changed files with 1305 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package main
import (
"github.com/goplus/llgo/cl/_testdata/geometry1370"
)
func main() {
rect := geometry1370.NewRectangle(5.0, 3.0)
geometry1370.RegisterShape(rect, 42)
println("ID:", rect.GetID())
}