1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files
go_basics/part_2/2.2/2.2.7/golang/first/main.go
2025-05-28 14:52:05 +03:00

16 lines
305 B
Go

package main
import (
f "fmt"
pack "golang/first/another_package"
u "golang/first/utils"
id "github.com/google/uuid"
)
func main() {
firstUUID := id.New()
f.Println(u.ReplaceSymbols(firstUUID, "-", "")) // 45f09a89584b4f66936cf3368e3f634b
print(pack.Add(4, 7)) // 11
}