



| The original way [with the endings of the p-words blanked out]: 28. On one day, a baseball stadium had 31,988 peo___. Four peo___ were going to win an all-exclusive seat in the front row near their favorite team. What are the chances that one per___ of the group was a winner? | The editted way [with p-words crossed out nearly invisible]: 28. On one day, a baseball stadium had 31,988 peo___. Four peo___ were going to win an all-exclusive seat in the front row near their favorite team. What are the chances that one per___ of the group was a winner? 3 3 1 3 |

function blue_water()
{
while(1) // a loop that is always true
{
if (fox.position == in_blue_water) // if the fox is in the blue water
{
fox.health = 0; // the fox dies as it's health is being set to 0
}
if (fox.position != in_blue_water) // if the fox is not in the blue water
{
fox.wants_to_get_wet = true; // flag being set to true to make the fox want to get wet
}
wait(1); // process once each game frame
}
}
function blue_water()
{
while(1) // a loop that is always true
{
if (liquid.color != blue) // if the liquid (the water) is not blue
{
liquid.color = blue; // the liquid (the water) becomes blue
}
if (fox.position == in_blue_water) // if the fox is in the blue water
{
fox.health = 0; // the fox dies as it's health is being set to 0
}
if (fox.position != in_blue_water) // if the fox is not in the blue water
{
fox.wants_to_get_wet = true; // flag being set to true to make the fox want to get wet
}
wait(1); // process once each game frame
}
}
