Cosmos/source2/Tests/XSharpCompilerTester/Program.cs
kudzu_cp 8600b89983
2012-07-12 13:43:04 +00:00

15 lines
355 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace XSharp.Test {
static class Program {
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}