10 lines
129 B
Go
10 lines
129 B
Go
|
|
package nomino
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func ExampleMake_basic() {
|
||
|
|
// Use default config
|
||
|
|
out, _ := Make(NewConfig())
|
||
|
|
fmt.Println(out)
|
||
|
|
}
|