view graal/com.oracle.truffle.sl.test/tests/Arithmetic.sl @ 17152:d48738c27e7d

Truffle: restore "opt fail" message on compilation failure
author Andreas Woess <andreas.woess@jku.at>
date Thu, 18 Sep 2014 19:02:02 +0200
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));  
}