mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
59a80cf953
Updates #1192
9 lines
85 B
Go
9 lines
85 B
Go
package main
|
|
|
|
const a = 1
|
|
const b = 2 + 0.5
|
|
|
|
func Foo() vec2 {
|
|
return vec2(a + b)
|
|
}
|