Skip to content

intdxdt/random

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

random

random utils for go

random string

generates an alpha numeric random string

    package main

    import (
        "fmt"
        "github.com/intdxdt/random"
    )
    
    func main() {
        fmt.Println(random.String(10)) //tq9Af6hv5T
    }