mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
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
|
||
|
}
|