Skip to content

Instantly share code, notes, and snippets.

@julianshen
Created November 13, 2012 15:38
Show Gist options
  • Save julianshen/4066398 to your computer and use it in GitHub Desktop.
Save julianshen/4066398 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
uuid "github.com/julianshen/GoUUID"
)
func main() {
_uuid, err := uuid.RandomUUID()
if err != nil {
fmt.Println(err)
} else {
fmt.Println(_uuid)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment