about summary refs log tree commit diff
path: root/coin_counter/Coin Counter/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2 (patch)
treedfdc9fb26bf11622a957181c851810ce4cbdca21 /coin_counter/Coin Counter/Program.cs
parentfactorial calc (diff)
downloadsql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar.gz
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar.bz2
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar.xz
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.zip
coin counter
Diffstat (limited to 'coin_counter/Coin Counter/Program.cs')
-rw-r--r--coin_counter/Coin Counter/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/coin_counter/Coin Counter/Program.cs b/coin_counter/Coin Counter/Program.cs
new file mode 100644
index 0000000..4f22f4a
--- /dev/null
+++ b/coin_counter/Coin Counter/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Coin_Counter

+{

+    internal static class Program

+    {

+        /// <summary>

+        /// The main entry point for the application.

+        /// </summary>

+        [STAThread]

+        static void Main()

+        {

+            Application.EnableVisualStyles();

+            Application.SetCompatibleTextRenderingDefault(false);

+            Application.Run(new coinCounter());

+        }

+    }

+}