WIP: Extend Practices Basics: Packages, Variables, Functions #1

Draft
vbendeguz wants to merge 1 commits from Basics-Packages-Variables-Functions into main
Showing only changes of commit 3f58b98404 - Show all commits

View File

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