14 lines
197 B
Go
Raw Permalink Normal View History

2021-12-04 16:42:11 +00:00
package x
import (
"testing"
)
func TestRandomNumber(t *testing.T) {
t.Log(RandomNumber())
t.Log(RandomNumber())
t.Log(RandomNumber())
t.Log(Random(1000, 9999))
t.Log(Random(1000, 9999))
}