mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
1e78c2e6b0
Closes #2840
10 lines
105 B
Go
10 lines
105 B
Go
package main
|
|
|
|
func Floats() [1]float {
|
|
return [1]float{1}
|
|
}
|
|
|
|
func Ints() [1]int {
|
|
return [1]int{1.0}
|
|
}
|