1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-18 06:52:02 +01:00
ebiten/internal/shader/testdata/issue1874.go

10 lines
91 B
Go
Raw Normal View History

package main
func Foo() float {
const (
s = 0.1
c = 0.2
)
return sin(s) + cos(c)
}