Recursive Programming

/* Recursive church model pseudo-code */

Church.plantAnotherChurch() {
  new Church localChurch;

  while (true) {
    localChurch.plantAnotherChurch();
  }
}

Comments powered by Disqus