mirror of
https://github.com/awnumar/memguard.git
synced 2026-02-07 02:09:53 +00:00
11 lines
153 B
Go
11 lines
153 B
Go
package stream
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestSlowRandByte(t *testing.T) {
|
|
randByte := SlowRandByte()
|
|
fmt.Println("Random byte:", randByte)
|
|
}
|