From 06d7ff4586ff2af23163b86e9016ac9fc397077c Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sun, 15 Nov 2020 03:02:00 +0000 Subject: [PATCH] comments --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 26eade9..156c633 100644 --- a/main.go +++ b/main.go @@ -12,8 +12,8 @@ import ( const ( randomMin = 0 - randomMax = 999999999999999999 //int64 max value is 9223372036854775807. We use one digit less than that with all 9's in order to not give bias to any digits. - numSamples = 100000000 + randomMax = 999999999999999999 // int64 max value is 9223372036854775807. We use one digit less than that with all 9's in order to not give bias to any digits. + numSamples = 100000000 // A nice rounded human number ) func main() {