I can create a turtle that will be in a window with the following code
Turtle t1 = new Turtle(w,100,100);
if i want to know its cordinates i can write
int getX(w);
But when I have 2 turtles, t1 and t2, I dont know what to do if i want to know t1s X cordinates..
Turtle t1 = new Turtle(w,100,100);
Turtle t2 = new Turtle(w,200,100);