view graal/com.oracle.truffle.sl.test/tests/Arithmetic.sl @ 19575:b017118b412b

Ensure a canonical ordering of inputs for commutative binary operations
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 18 Feb 2015 10:36:31 -0800
parents b16ec83edc73
children
line wrap: on
line source

function main() {  
  println(3 + 4 - 2);  
  println(3 - 4 + 2);  
  println(3 - 4 - 2);  
  println(3 * 4 + 2);  
  println(3 + 4 * 2);  
  println(3 + (4 - 2));  
  println(3 - (4 + 2));  
  println(3 - (4 - 2));  
  println(3 * (4 + 2));  
  println(3 + (4 * 2));  
}