Skip to content

Instantly share code, notes, and snippets.

@tenntenn
Created December 25, 2012 06:01
Show Gist options
  • Save tenntenn/4371824 to your computer and use it in GitHub Desktop.
Save tenntenn/4371824 to your computer and use it in GitHub Desktop.
// http://play.golang.org/p/CFA11n1BF6
package main
import (
"fmt"
"math/rand"
)
func main() {
for i := 0; i < 10; i++ {
fmt.Println(rand.Int())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment