REM- REM Author: Brian Tiffin REM Dedicated to the public domain REM REM Date: November 2016 REM Modified: 2016-11-29/05:15-0500 REM REM Tectonics: bacon tightloop-basic.bac REM+ REM Sum of values from 0 to 16777216 total = 0 FOR i = 0 TO 1<<24 total = total + i NEXT PRINT total