aboutsummaryrefslogtreecommitdiffstats
path: root/progs/bench/sum.sy
blob: 76fe3926ffa4c23a54eb077dacf2259c4b4dca4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Adds the numbers 0 to 100000
start :: fn {
    sum := 0
    for i := 0, i <= 100000, i += 1 {
        sum += i
    }
    sum <=> 5000050000
}

// flags: no_print