method main()
{
//--- instantiate the Jeroo ---
Jeroo Kim = new Jeroo();
//--- get the flower ---
Kim.hop(4);
Kim.pick();
//--- disable the net ---
Kim.turn(RIGHT);
Kim.hop();
Kim.toss();
//--- finish up ---
Kim.hop();
Kim.turn(LEFT);
} //===== end main() =====
|