2
1
Fork 0

constants

main^2
Sebastian Steger 2025-08-20 06:35:32 +00:00
parent 1b4be46e08
commit 3064e116cb
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
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))
}