public Turtlet move (double left, double forward)
{ return super.move (left, forward);
}


I don't know why you are overriding the method in the subclass if all it does is call the method from...