view graal/com.oracle.truffle.sl.test/tests/LoopPolymorphic.sl @ 16130:6f7d3f3703d3

Truffle/Source: - LineLocation and LineBreakpoint no longer implement Comparable - TextMap now internal to the Source factory
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Mon, 16 Jun 2014 20:52:06 -0700
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() {
  add("a", "b");

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