// This file has the main method to see how // the TextShapes package works. import TextShapes.*; class RunTheShapes { // pass width, height, method Box b = new Box( 10, 15, "Hi" ); System.out.println(" Here's a box(10,15,'Hi') : "); b.draw(); }