/*- Author: Brian Tiffin Dedicated to the public domain Date started: December 2016 Modified: 2016-12-14/12:15-0500 +*/ // Sum of values from 0 to 16777216 var i = 0; var total = 0.0; var limit = 1 << 24; while i <= limit { total += i; i += 1; } $print(total, "\n");