view graal/com.oracle.truffle.sl.test/tests/Div.sl @ 17408:f0792f868d7d

Truffle: improve documentation for compiler options.
author Christian Humer <christian.humer@gmail.com>
date Thu, 09 Oct 2014 17:25:35 +0200
parents b16ec83edc73
children
line wrap: on
line source

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