1
0
mirror of https://github.com/fadden/6502bench.git synced 2025-06-19 05:23:33 +00:00

Initial file commit

This commit is contained in:
Andy McFadden
2018-09-28 10:05:11 -07:00
parent 469eb49c4a
commit 2c6212404d
370 changed files with 72418 additions and 2 deletions

22
CodeLab/Program.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WorkBench
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainWindow());
}
}
}