' {$STAMP BS2} ' {$PBASIC 2.5} ' 2008 mlab.uiah.fi/paja ' Understanding Loop (for statements) ' Note: Use the DO LOOP only once in your entire code. Init: DEBUG CLS DEBUG "Initializing", CR Main: DO DEBUG "looping...", CR PAUSE 1000 LOOP END