mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
d3b72d4ef9
Updates #2011
14 lines
115 B
Go
14 lines
115 B
Go
package main
|
|
|
|
const F = float(1)
|
|
|
|
func Foo() float {
|
|
return F
|
|
}
|
|
|
|
const I = int(2.0)
|
|
|
|
func Bar() int {
|
|
return I
|
|
}
|