view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 15162:dbb1fe8348e6

Allow to supply predefined installed code object when adding a method to the code cache.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 15 Apr 2014 15:22:37 +0200
parents b16ec83edc73
children
line wrap: on
line source

function main() {  
  println(3 - 4);  
  println(3 - 4000000000000);  
  println(3000000000000 - 4);  
  println(3000000000000 - 4000000000000);  
}