view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 13822:35fc64972250

fixed Linux compile error and removed name of not-yet-existing Windows Okra dll
author Doug Simon <doug.simon@oracle.com>
date Thu, 30 Jan 2014 13:21:15 +0100
parents b16ec83edc73
children
line wrap: on
line source

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