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
results:=[9]int{}// There are 9 possible leading digits and 0 does not count, offset by 1 for index to actual value. Examples: To access 1 use [0]. To access 5 use [4]. To access 9 use [8].
results[firstDigit(rand.Intn(randomMax-randomMin+1)+randomMin)-1]++// We must use Intn instead of Int because from Base10's perspective, integers cut off at a really weird spot