view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 14869:89a079df9cb4

Backout changeset ae7cbf13e765708f228be3e2e666e13d421bbd8e
author Erik Eckstein <erik.eckstein@oracle.com>
date Fri, 28 Mar 2014 09:18:18 +0100
parents b16ec83edc73
children
line wrap: on
line source

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

function main() {
  defineFunction("function test(a, b) { return a + b; }");
  foo();

  defineFunction("function test(a, b) { return a - b; }");
  foo();
}