Compare commits

1 Commits

Author SHA1 Message Date
3f58b98404 Init packages.go 2023-06-19 12:33:43 +02:00

View File

@@ -0,0 +1,10 @@
package main
import (
"fmt"
"math/rand"
)
func main() {
fmt.Println("My favorite number is", rand.Intn(10))
}