mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-27 20:28:54 +01:00
12 lines
113 B
Go
12 lines
113 B
Go
|
package main
|
||
|
|
||
|
func Foo() (int, int) {
|
||
|
return 1, 1
|
||
|
}
|
||
|
|
||
|
func Bar() {
|
||
|
_, _ = Foo()
|
||
|
a, _ := Foo()
|
||
|
_, b := Foo()
|
||
|
}
|