package prolog;

import prolog.ui.*;
import javax.swing.*;

public class MPrologIDE
{
	public static void main( String args[] )
	{
		try
		{
			UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() );
		}
		catch( Throwable ignore )
		{
		}
		MainFrame f = new MainFrame();
		f.setVisible( true );
	}
}
