view graal/com.oracle.truffle.sl.test/tests/Mul.sl @ 16983:54a21a1bec26

matcher needs to indirect through NodeClass to work properly in the presence of generated Node classes
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 Aug 2014 18:59:09 +0200
parents b16ec83edc73
children
line wrap: on
line source

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