mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
8 lines
86 B
Go
8 lines
86 B
Go
|
package main
|
||
|
|
||
|
func Foo() vec2 {
|
||
|
const a = 1
|
||
|
const b = a + 2 + 0.5
|
||
|
return vec2(b)
|
||
|
}
|