2015-05-29 14:18:51 -07:00

12 lines
314 B
Java

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