Created
November 13, 2012 15:38
-
-
Save julianshen/4066398 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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