Múltiplos do operador de módulo, valores alternativos
for( i=0; i <= 10; i++ ) {
writeOutput( i%2 );
}
// 01010101010
Worrisome Weevil
for( i=0; i <= 10; i++ ) {
writeOutput( i%2 );
}
// 01010101010
if( incrementalId % 2 == 1 )
// send to one
else
// send to the other