✨Feat: 随机数生成

This commit is contained in:
2025-12-29 15:46:18 +08:00
parent d3e8fffa26
commit 64b955da9d
+11 -1
View File
@@ -1 +1,11 @@
package go_study
package main
import (
"fmt"
"math/rand"
)
func main() {
fmt.Println("Hello World")
fmt.Println("My favorite number is", rand.Intn(100))
}