view graal/com.oracle.truffle.sl.test/tests/Mul.sl @ 18531:cdb9c605051a

removed some static accesses to HotSpotGraalRuntime from some tests
author Doug Simon <doug.simon@oracle.com>
date Wed, 26 Nov 2014 13:57:50 +0100
parents b16ec83edc73
children
line wrap: on
line source

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