forked from mirror/go.uuid
Updated README
This commit is contained in:
parent
3f8b0b0fa2
commit
3d29736e97
|
@ -5,7 +5,7 @@
|
|||
|
||||
This package provides implementation of Universally Unique Identifier (UUID).
|
||||
|
||||
With 100% test coverage out of box.
|
||||
With 100% test coverage and benchmarks out of box.
|
||||
|
||||
Supported versions:
|
||||
* Version 1, based on timestamp and MAC address (RFC 4122)
|
||||
|
@ -39,7 +39,7 @@ import (
|
|||
func main() {
|
||||
// Creating UUID Version 4
|
||||
u := uuid.NewV4()
|
||||
fmt.Printf("UUIDv4: %s", u)
|
||||
fmt.Printf("UUIDv4: %s\n", u)
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue