1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-16 05:52:03 +01:00
ebiten/internal/shader/testdata/return.go

7 lines
73 B
Go
Raw Normal View History

package main
func Foo(a vec2) (b vec3, c vec4) {
b = vec3(1)
return
}