/** * The class containing main for an application that draws * a Sierpinski Triangle. * * @author David Mutchler. * Created October 18, 2008. */ public class Main { /** * Constructs and makes visible the frame that displays this application. * * @param args Command-line arguments (unused here) */ public static void main(String[] args) { new SierpinskiFrame().setVisible(true); } }