view graal/com.oracle.truffle.sl.test/tests/LoopPrint.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 afd6fa5e8229
children
line wrap: on
line source

function loop(n) {
  i = 0;  
  while (i < n) {  
    i = i + 1;  
  }  
  return i;
}  

function main() {
  i = 0;
  while (i < 20) {
    loop(1000);
    i = i + 1;
  }
  println(loop(1000));  
}