import stamp.core.*;
import fietsv1.*;

/**
 * Put a one line description of your class here.
 * <p>
 * This comment should contain a description of the class. What it
 * is for, what it does and how to use it.
 *
 * You should rename the class and then save it in a file with
 * exactly the same name as the class.
 *
 * @version 1.0 Date
 * @author Your Name Here
 */

public class Main {

  private static Display disp;

  public static void main() {
    try{
    disp = new Display();
    }
    catch(Exception e)
    {
    }
  }

} 