view graal/com.oracle.truffle.sl.test/tests/FunctionLiteral.sl @ 18573:3566e1edb3b4

removed static references to HotSpotGraalRuntime
author Doug Simon <doug.simon@oracle.com>
date Thu, 27 Nov 2014 11:51:17 +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);
}