ebiten/internal/shader/testdata/call_multiple_nested.go

10 lines
109 B
Go
Raw Normal View History

2020-06-08 04:18:27 +02:00
package main
func Foo(x vec2) {
Bar(Bar(x.x, x.y))
}
func Bar(x, y float) (float, float) {
return x, y
}