Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

12 lines
317 B
Java

//: polymorphism/shape/Square.java
// ©2015 MindView LLC: see Copyright.txt
package polymorphism.shape;
import static com.mindviewinc.util.Print.*;
public class Square extends Shape {
@Override
public void draw() { print("Square.draw()"); }
@Override
public void erase() { print("Square.erase()"); }
} ///:~