• By default the code inside draw() will be called again and again.
  • You can stop it by calling noLoop() and force start it by calling loop().
  • int age = 25;
    if(age < 50) {
    	println("you are young");
    }