mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
10 lines
109 B
Go
10 lines
109 B
Go
|
package main
|
||
|
|
||
|
func Foo(x vec2) {
|
||
|
Bar(Bar(x.x, x.y))
|
||
|
}
|
||
|
|
||
|
func Bar(x, y float) (float, float) {
|
||
|
return x, y
|
||
|
}
|