view graal/com.oracle.truffle.sl.test/tests/Add.sl @ 13982:b167b1838029

mx eclipseinit: take care of working sets that were edited by hand
author Michael Haupt <michael.haupt@oracle.com>
date Thu, 20 Feb 2014 11:14:46 +0100
parents b16ec83edc73
children
line wrap: on
line source

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