view graal/com.oracle.truffle.sl.test/tests/Mul.sl @ 19131:cd49455040c1

LIRGeneratorTool: change return type from Value to Variable for most emit methods.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 04 Feb 2015 14:33:27 +0100
parents b16ec83edc73
children
line wrap: on
line source

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