package w5.jichu; public class ShapeTest { public static void drawShape(Shape s) { s.draw(); } public static void main(String[] args) { Shape circle = new Circle(); Shape rectangle = new Rectangle(); drawShape(circle); drawShape(rectangle); } }