view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 15077:8196aa2170d8

put CompileTheWorld log statement behind verbose option
author Doug Simon <doug.simon@oracle.com>
date Sun, 13 Apr 2014 22:53:47 +0200
parents e34d5cca7496
children
line wrap: on
line source

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