File: main.go

package info (click to toggle)
golang-github-xyproto-randomstring 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: makefile: 4
file content (11 lines) | stat: -rw-r--r-- 155 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"fmt"
	"github.com/xyproto/randomstring"
)

func main() {
	randomstring.Seed()
	fmt.Println(randomstring.HumanFriendlyString(7))
}