mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
13 lines
119 B
Go
13 lines
119 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
|
||
|
|
"github.com/google/uuid"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
myUUID := uuid.New()
|
||
|
|
fmt.Println(myUUID)
|
||
|
|
}
|