aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/bc/irand_long.bc
blob: 9274f8953b6003a95be947174b1bbd9166cb1e86 (plain)
1
2
3
4
5
6
7
8
9
#! /usr/bin/bc -lq

start = 2^256
end = start + 10000000

for (i = start; i < end; ++i) {
	print "irand(", i, ")\n"
}