multiple testing concepts

This commit is contained in:
2024-07-20 07:29:48 -05:00
parent 268cbcf62a
commit 2c6aed01ae
5 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package main
import (
"fmt"
namegen "gitea.smoothnet.org/nhyatt/go-predictive-name-generator"
)
func main() {
n := namegen.New()
fmt.Printf("GeneratedName: %s\n", n.GetRandom())
fmt.Printf("GeneratedName: %s\n", n.GetPredictive("this is a seed string"))
}