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

max = 1000000

for (i = 0; i < max; ++i) {
	print "i++\ni--\n"
}

print "halt\n"

halt