view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 18573:3566e1edb3b4

removed static references to HotSpotGraalRuntime
author Doug Simon <doug.simon@oracle.com>
date Thu, 27 Nov 2014 11:51:17 +0100
parents e34d5cca7496
children
line wrap: on
line source

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