Exemplo n.º 1
0
func GetTime() float64 {
	var f float64

	f = float64(C.al_get_time())

	return f
}
Exemplo n.º 2
0
Arquivo: al.go Projeto: beoran/algo
// Gets the time the app is running in seconds
func GetTime() float64 {
	return float64(C.al_get_time())
}
Exemplo n.º 3
0
func CurrentTime() float64 {
	return float64(C.al_get_time())
}