view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 21271:1516d26e8f2b

Truffle/Source: add a new kind of Source (both indexed and non-indexed flavors) whose contents are unavailable at creation, but will be provided incrementally.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Thu, 07 May 2015 20:14:23 -0700
parents b16ec83edc73
children
line wrap: on
line source

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