view graal/com.oracle.truffle.sl.test/tests/Break.sl @ 16140:7109baa7b9eb

Truffle/Source: SourceSection.toString() is now equivalent to getCode()
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Wed, 18 Jun 2014 11:05:16 -0700
parents 64c77f0577bb
children
line wrap: on
line source

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