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

start = 2^256
end = start + 10000000

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

print "halt\n"

halt