view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 17352:ea7b8c7a6e5c

fixed reliability of DebugTimerTest
author Doug Simon <doug.simon@oracle.com>
date Mon, 06 Oct 2014 17:32:55 +0200
parents e34d5cca7496
children
line wrap: on
line source

function main() {  
  i = 0;  
  while (i < 1000) {  
    i = i + 1;  
  }  
  return i;  
}