loop()
{
runA();
executeX();
}
void runA()
{
//do a bunch of stuff
}
void executeX()
{
//do some other stuff
}
loop()
{
runA();
executeX();
}
void runA()
{
//do a bunch of stuff
}
void executeX()
{
//do some other stuff
}