more loops

void loop ()
{
  for (int x = 0; x < 20; x++)
  {
    doOneThing ();
  }
  doAnotherThing ();
}