mirror of
https://github.com/jimeh/rands.git
synced 2026-02-18 19:16:38 +00:00
13 lines
174 B
Go
13 lines
174 B
Go
package rands_test
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/jimeh/rands"
|
|
)
|
|
|
|
func ExampleBytes() {
|
|
b, _ := rands.Bytes(8)
|
|
fmt.Printf("%+v\n", b) // => [0 220 137 243 135 204 34 63]
|
|
}
|