mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
50cd33ed9b
Fixes #1299
10 lines
81 B
Go
10 lines
81 B
Go
package main
|
|
|
|
func Foo() int {
|
|
x := 1
|
|
x *= 2
|
|
x = x + 2
|
|
x = 2 - x
|
|
return x
|
|
}
|