1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files

13 lines
119 B
Go
Raw Permalink Normal View History

package main
import (
"fmt"
"github.com/google/uuid"
)
func main() {
myUUID := uuid.New()
fmt.Println(myUUID)
}