view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 17209:1b6172cb270e

[SPARC] eclipseformat
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Wed, 24 Sep 2014 17:17:27 -0700
parents ff3136ecb5a7
children
line wrap: on
line source

function foo() {}
function bar() {}

function main() {  
  foo();
  if (1 < 2) {
    bar();
    return 1;
  }
}