13 lines
145 B
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)
|
||
|
}
|