// Application startup class for the HTML viewer/editor program
import library.html.HtmlFile; // Import HTML file handler
public class Webber {
public static void main(String args[]) {
(new HtmlFile()).emptyViewer(); // Create an empty viewer
}
}