dep/main.go (9 lines of code) (raw):

package main import ( "fmt" "github.com/google/uuid" ) func main() { uuid := uuid.New() fmt.Printf("Hello, %s\n", uuid) }