You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415161718192021 |
- package main
-
- import (
- "fmt"
- "math"
- )
-
- const s string = "constant"
-
- func consts() {
- fmt.Println(s)
-
- const n = 500000000
-
- const d = 3e20 / n
- fmt.Println(d)
-
- fmt.Println(int64(d))
-
- fmt.Println(math.Sin(n))
- }
|