package oopintro;

public class TestRoom {

    public static void main(String[] args) {
        // this is where we will test our Room class for this lesson
            Room G407 = new Room();
            G407.name = "G407";
            G407.width = 10;
            G407.length = 11;
        
            System.out.println(G407.calculateArea());
            System.out.println(G407.calculatePerimeter());
        
        // add an instance method called displayRoom
        //- returns a string
        // the room object "as a string" in the following
        // format:
        //Room name: l.l *w.w
        // when done, call it from the main() in TestRoom
    }
   
}
