view graal/com.oracle.truffle.sl.test/tests/FunctionLiteral.sl @ 18324:06756883d87e

removed annotation denoting which proxied invocations have their results cached (for now, all results are cached)
author Doug Simon <doug.simon@oracle.com>
date Mon, 10 Nov 2014 17:28:38 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

function sub(a, b) {
  return a - b;
}

function foo(f) {
  println(f(40, 2));
}

function main() {
  foo(add);
  foo(sub);
}