2
1
Fork 0
pr3-ws202526/go/03-modules/main.go

20 lines
375 B
Go

package main
import (
"fmt"
mm "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/03-modules/myMath"
//_ "gitty.informatik.hs-mannheim.de/steger/pr3-code/go/03-modules/myMath"
"github.com/google/uuid"
//run go get github.com/google/uuid
//or go mod tidy => go.sum
)
func main() {
fmt.Println(mm.Add(1, 2))
id := uuid.New()
fmt.Println("Generated UUID:", id)
}