package com.example.test;

import com.example.a.Shape;

public class Rectangle extends Shape {

	public void getRectWidth () {
		System.out.println("width: " + width);
	}
}
