Skip to content

Commit 8a532b4

Browse files
committed
Refatorações
1 parent 016027b commit 8a532b4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+15537
-13824
lines changed

FrmSimpleCompiler.cs

Lines changed: 1556 additions & 1438 deletions
Large diffs are not rendered by default.

Program.cs

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
using System;
22
using System.Windows.Forms;
33

4-
namespace SimpleCompiler
4+
namespace SimpleCompiler;
5+
6+
static class Program
57
{
6-
static class Program
8+
/// <summary>
9+
/// Ponto de entrada principal para o aplicativo.
10+
/// </summary>
11+
[STAThread]
12+
static void Main()
713
{
8-
/// <summary>
9-
/// Ponto de entrada principal para o aplicativo.
10-
/// </summary>
11-
[STAThread]
12-
static void Main()
13-
{
14-
Application.EnableVisualStyles();
15-
Application.SetCompatibleTextRenderingDefault(false);
16-
Application.Run(new FrmSimpleCompiler());
17-
}
14+
Application.EnableVisualStyles();
15+
Application.SetCompatibleTextRenderingDefault(false);
16+
Application.Run(new FrmSimpleCompiler());
1817
}
1918
}

0 commit comments

Comments
 (0)