Co-authored-by: xgopilot <noreply@goplus.org> Co-authored-by: Claude <noreply@anthropic.com>
12 lines
207 B
Go
12 lines
207 B
Go
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())
|
|
}
|