extern void object::Example( )
{
	move(20);  // go to checkpoint 1
	turn(90);
	move(20);  // go to checkpoint 2
	turn(-90);
	move(20);  // go to checkpoint 3
	turn(-90);
	move(20);  // go to finishing pad
}
