package shape;

public class Square extends Shape {

	@Override
	public void draw() {
		System.out.println("Inside Square::draw() method.");
	}
}