3 Commits

Author SHA1 Message Date
wonder b22fab4459 ✨Feat: 数学库调用 2025-12-29 15:54:47 +08:00
wonder 64b955da9d ✨Feat: 随机数生成 2025-12-29 15:46:18 +08:00
wonder d3e8fffa26 🔄Update: Go 工具链使用测试 2025-12-17 10:10:21 +08:00
3 changed files with 15 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
"fmt"
"math"
"math/rand"
)
func main() {
fmt.Println("Hello World")
fmt.Println("My favorite number is", rand.Intn(100))
fmt.Println("运算 根号2,结果为 ", math.Sqrt(2))
}
+1
View File
@@ -0,0 +1 @@
package main
+1
View File
@@ -0,0 +1 @@
package main