go-learning/tour_of_go/l2/packages.go

13 lines
145 B
Go

package main
import (
"fmt"
"math/rand"
"math"
)
func main() {
fmt.Println("My favorite number is", rand.Intn(10))
fmt.Println(math.Pi)
}