view graal/com.oracle.truffle.sl.test/tests/Mul.sl @ 21371:2c2c85ce7f4d

Move VM-independent code out of HotSpot project
author Christian Wimmer <christian.wimmer@oracle.com>
date Thu, 14 May 2015 15:56:31 -0700
parents b16ec83edc73
children
line wrap: on
line source

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