1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-15 13:32:04 +01:00
ebiten/internal/shader/testdata/const.go

9 lines
85 B
Go
Raw Normal View History

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