view graal/com.oracle.truffle.sl.test/tests/FunctionLiteral.sl @ 13982:b167b1838029

mx eclipseinit: take care of working sets that were edited by hand
author Michael Haupt <michael.haupt@oracle.com>
date Thu, 20 Feb 2014 11:14:46 +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);
}