view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 18486:b9a8b2885283

Truffle/Instrumentation: CHANGELOG for recent updates.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Sun, 23 Nov 2014 16:09:26 -0800
parents e34d5cca7496
children
line wrap: on
line source

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