1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-02-24 17:00:08 +01:00
ebiten/internal/shader/testdata/const2.go

8 lines
86 B
Go
Raw Normal View History

package main
func Foo() vec2 {
const a = 1
const b = a + 2 + 0.5
return vec2(b)
}