Files
go-2025-winter/main.go
T

12 lines
144 B
Go
Raw Normal View History

2025-12-29 15:46:18 +08:00
package main
import (
"fmt"
"math/rand"
)
func main() {
fmt.Println("Hello World")
fmt.Println("My favorite number is", rand.Intn(100))
}