go-learning/tour_of_go/l2/packages.go

13 lines
145 B
Go
Raw Normal View History

2025-08-30 12:55:18 +00:00
package main
import (
"fmt"
"math/rand"
"math"
)
func main() {
fmt.Println("My favorite number is", rand.Intn(10))
fmt.Println(math.Pi)
}