view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 16914:826c172a048f

SL: fixed merge problem.
author Christian Humer <christian.humer@gmail.com>
date Sat, 23 Aug 2014 19:31:36 +0200
parents ff3136ecb5a7
children
line wrap: on
line source

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

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