mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
10 lines
91 B
Go
10 lines
91 B
Go
|
package main
|
||
|
|
||
|
func Foo() float {
|
||
|
const (
|
||
|
s = 0.1
|
||
|
c = 0.2
|
||
|
)
|
||
|
return sin(s) + cos(c)
|
||
|
}
|