All pastes #2054131 Raw Edit

Untitled

public text v1 · immutable
#2054131 ·published 2011-05-05 08:06 UTC
rendered paste body
public class Foo {
  public static void main(String[] args) {
    end_loop = false;
    while (!end_loop) {
      end_loop = EndLoop();
    }
  }
  public static void EndLoop() {
    boolean end_loop = true;
    // .. do some stuff, determine if we should set end_loop to false
    return end_loop;
  }
}