view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 17299:072a25e613ba

Use Arrays.hashCode for hashing array fields.
author Roland Schatz <roland.schatz@oracle.com>
date Wed, 01 Oct 2014 14:24:59 +0200
parents e34d5cca7496
children
line wrap: on
line source

function main() {  
  i = 0;  
  while (i < 1000) {  
    i = i + 1;  
  }  
  return i;  
}