/*- Author: Brian Tiffin Dedicated to the public domain Date started: December 2016 Modified: 2016-12-14/15:27-0500 +*/ /* Sum of values from 0 to 16777216 */ [indent=4] init total:long = 0 for var i = 1 to (1<<24) total += i print("%ld", total)