1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-29 05:36:55 +02:00

отредактировано 2 главы

This commit is contained in:
Stanislav Chernyshev
2025-05-28 14:52:05 +03:00
parent 9a4cd8e60f
commit 70656cfad8
145 changed files with 2894 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package main
import (
f "fmt"
pack "golang/first/another_package"
u "golang/first/utils"
"golang/second"
id "github.com/google/uuid"
)
func main() {
firstUUID := id.New()
f.Println(u.ReplaceSymbols(firstUUID, "-", "")) // 8912acef6d3d40aa94f21333faa1c679
f.Println(pack.Add(4, 7)) // 11
f.Println(second.AddInt(3, 5)) // 8
f.Println(second.DivFloat(54.48, 3.66)) // 14.885245901639342
}