2021-11-22 16:05:02 +00:00

14 lines
197 B
Go

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))
}