view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 16846:e3dd75b3c290

revived creation of annotation processor jars by 'mx ideinit'
author Doug Simon <doug.simon@oracle.com>
date Fri, 15 Aug 2014 13:54:37 +0200
parents e34d5cca7496
children
line wrap: on
line source

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