view graal/com.oracle.truffle.sl.test/tests/FunctionLiteral.sl @ 19769:e773cc48d3e8

Truffle-DSL: make specialization types mergable with other specialization types.
author Christian Humer <christian.humer@gmail.com>
date Wed, 11 Mar 2015 11:30:20 +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);
}