view graal/com.oracle.truffle.sl.test/tests/LoopInvalidate.sl @ 19001:5a79fa76b489

Run eclipse format.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 28 Jan 2015 04:05:07 +0100
parents afd6fa5e8229
children
line wrap: on
line source

function add(a, b) {
  return a + b;
}

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

function main() {
  i = 0;
  while (i < 20) {
    loop(1000);
    i = i + 1;
  }
  add("a", "b");
  println(loop(1000));  
}