view graal/com.oracle.truffle.sl.test/tests/Div.sl @ 15565:6b7c5c7d0d81

Merge.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 May 2014 22:53:35 +0200
parents b16ec83edc73
children
line wrap: on
line source

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