Update


Videogame

Adding new content gives people a reason to check it out again…and to talk about it again. New game mode, features, improved graphics, multiplayer mode, new characters, new set of levels…

Create a marketing concept for every patch.

(http://www.pixelprospector.com/updates-for-the-game/)

Java For Loop

The thing that changes so the test has something that can eventually fail so the loop can end. Despite being in the beginning of the loop, it is done at the end of the loop after the last statement in the body.

  • for (int i = 1; i <= 4; i++) {
    • System.out.println("cat");
  • }

The i declaration is the initialization, the comparison is the test, and the ++ is the update.

(DEV276x)