(int x, int y)
| 13 | this.f = f; |
| 14 | } |
| 15 | public void move(int x, int y) { |
| 16 | f.format("%s The Turtle is at (%d,%d)%n", |
| 17 | name, x, y); |
| 18 | } |
| 19 | public static void main(String[] args) { |
| 20 | PrintStream outAlias = System.out; |
| 21 | Turtle tommy = new Turtle("Tommy", |