forked from steger/pr3-ws202526
20 lines
375 B
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)
|
|
}
|