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());
    }
}
