2025-12-29 15:46:18 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2025-12-29 15:54:47 +08:00
|
|
|
"math"
|
2025-12-29 15:46:18 +08:00
|
|
|
"math/rand"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
fmt.Println("Hello World")
|
|
|
|
|
fmt.Println("My favorite number is", rand.Intn(100))
|
2025-12-29 15:54:47 +08:00
|
|
|
fmt.Println("运算 根号2,结果为 ", math.Sqrt(2))
|
2025-12-29 15:46:18 +08:00
|
|
|
}
|