view graal/com.oracle.truffle.sl.test/tests/Break.sl @ 15459:0dae565d9289

fixed code that ecj had a problem compiling
author Doug Simon <doug.simon@oracle.com>
date Thu, 01 May 2014 18:26:25 +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;  
}