view truffle/com.oracle.truffle.sl.test/src/tests/Eval.sl @ 22548:6b76a24fffbd default tip

Use all variables: a, b, u,v and x, y
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Thu, 14 Jan 2016 14:20:57 +0100
parents fecae2501987
children
line wrap: on
line source

function main() {  
  eval("application/x-sl", "function foo() { return 14 + 2; }");
  println(foo());
}