function doTheStuff()
{
  receive
  {
    ['message1', {name: n, family: { father: f } }]:
      …
      break;

    ['ping', pid]:
      pid ! ['pong', this];
      break;

    ['stop']:
      return true;

    default:
      doTheStuff();
  }
}


