Fix: tool description
This commit is contained in:
11
extra/twentyq.go
Normal file
11
extra/twentyq.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package extra
|
||||
|
||||
import "math/rand"
|
||||
|
||||
var (
|
||||
chars = []string{"Shrek", "Garfield", "Jack the Ripper"}
|
||||
)
|
||||
|
||||
func GetRandomChar() string {
|
||||
return chars[rand.Intn(len(chars))]
|
||||
}
|
||||
Reference in New Issue
Block a user