view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 16229:d837c02aba58

support constructing a NodeInputList from a collection of NodeInterface objects
author Doug Simon <doug.simon@oracle.com>
date Wed, 25 Jun 2014 16:53:09 +0200
parents b16ec83edc73
children
line wrap: on
line source

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