Skip to content

Instantly share code, notes, and snippets.

@icexin
Created September 29, 2016 09:48
Show Gist options
  • Save icexin/448f10a279508216794381490f9b20af to your computer and use it in GitHub Desktop.
Save icexin/448f10a279508216794381490f9b20af to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"math/rand"
"strconv"
"time"
)
func main() {
rand.Seed(time.Now().Unix())
fmt.Println(strconv.FormatInt(rand.Int63(), 36))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment