feat: init & playaround

This commit is contained in:
2026-03-01 21:03:32 +01:00
commit de9137b84e
10 changed files with 313 additions and 0 deletions

View File

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