1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-29 05:36:55 +02:00
Files
go_basics/part_2/2.2/2.2.1-2.2.2/golang/first/main.go
2025-05-28 14:52:05 +03:00

13 lines
119 B
Go

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