view graal/com.oracle.truffle.sl.test/tests/Break.sl @ 18167:2bf5ea10eea7

sharpened return types for HotSpot specific Graal API implementations
author Doug Simon <doug.simon@oracle.com>
date Sat, 25 Oct 2014 13:36:07 +0200
parents 64c77f0577bb
children
line wrap: on
line source

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