public class Program{

  public static void main(String[] args) {

    Turtle t = new Turtle();
    t.hide();
    t.speed(0);
    t.setPosition(0,0);
    t.dot();
  }

}
