view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 19220:1487207db440

Introduce LowLevelPhaseSuite and LowLevelCompilerConfiguration.
author Josef Eisl <josef.eisl@jku.at>
date Mon, 09 Feb 2015 13:20:04 +0100
parents b16ec83edc73
children
line wrap: on
line source

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