]>
Commit | Line | Data |
---|---|---|
1 | #region Using Statements | |
2 | using System; | |
3 | using System.Collections.Generic; | |
4 | using System.Linq; | |
5 | ||
6 | #endregion | |
7 | ||
8 | namespace SuperPolarity | |
9 | { | |
10 | static class Program | |
11 | { | |
12 | private static SuperPolarity superPolarity; | |
13 | ||
14 | /// <summary> | |
15 | /// The main entry point for the application. | |
16 | /// </summary> | |
17 | [STAThread] | |
18 | static void Main () | |
19 | { | |
20 | superPolarity = new SuperPolarity (); | |
21 | superPolarity.Run (); | |
22 | } | |
23 | } | |
24 | } |