view graal/com.oracle.truffle.sl.test/tests_instrumentation/Instrumentation_assnCount.sl @ 18312:a968fd429ee5

Add CONTRIBUTING.md file which will show up in GitHub when people try to send pull requests.
author Chris Seaton <chris.seaton@oracle.com>
date Sun, 09 Nov 2014 16:33:40 +0000
parents 7661cc464239
children
line wrap: on
line source

function loop(count) {  
  i = 0;  
  while (i < count) {  
    i = i + 1;  
  }  
  return i;  
}

function main() {
  count = loop(100);
}