memguard/examples/stream/stream_test.go

11 lines
153 B
Go

package stream
import (
"fmt"
"testing"
)
func TestSlowRandByte(t *testing.T) {
randByte := SlowRandByte()
fmt.Println("Random byte:", randByte)
}