#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
#endregion
namespace SuperPolarity
{
static class Program
{
private static SuperPolarity superPolarity;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main ()
{
superPolarity = new SuperPolarity ();
superPolarity.Run ();
}
}
}