go-learn/maths.go

22 lines
212 B
Go
Raw Permalink Normal View History

2021-03-01 18:12:37 +00:00
package main
import (
"fmt"
"math"
)
const s string = "constant"
func main() {
fmt.Println(s)
const n = 500000000
const d = 3e20 / n
fmt.Println(d)
fmt.Println(int64(d))
fmt.Println(math.Sin(n))
}