view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 19194:0678ce28de69

[SPARC] Remove CryptoSubstitutionsTest from blacklist
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Tue, 10 Feb 2015 10:36:19 +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();
}