// Adds the numbers 0 to 100000 start :: fn { sum := 0 for i := 0, i <= 100000, i += 1 { sum += i } sum <=> 5000050000 }