aboutsummaryrefslogtreecommitdiffstats
path: root/progs/bench/sum.sy
blob: bb6870f6c220d2945c8bda082b084ba585ad44c2 (plain) (blame)
1
2
3
4
5
6
// Adds the numbers 0 to 10000
sum := 0
for i := 0, i <= 100000, i += 1 {
    sum += i
}
sum <=> 5000050000