mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
11 lines
100 B
Go
11 lines
100 B
Go
|
package main
|
||
|
|
||
|
func Foo() vec2 {
|
||
|
x := true
|
||
|
if x {
|
||
|
return vec2(0)
|
||
|
} else {
|
||
|
return vec2(1)
|
||
|
}
|
||
|
}
|