view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 15594:62738ce98804

mx: set _minVersion to 1.8
author Gilles Duboscq <duboscq@ssw.jku.at>
date Mon, 12 May 2014 11:43:36 +0200
parents e34d5cca7496
children
line wrap: on
line source

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