about summary refs log tree commit diff
path: root/cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit9581dccd5b4e0189ce45f49c78f9d666034524b2 (patch)
tree2e350d474e0881e1c1b6ac0ddbe33d70a671c05c /cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs
parentmost common char (diff)
downloadsql-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar
sql-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar.gz
sql-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar.bz2
sql-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar.xz
sql-9581dccd5b4e0189ce45f49c78f9d666034524b2.zip
fat & carb cals
Diffstat (limited to 'cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs')
-rw-r--r--cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs b/cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs
new file mode 100644
index 0000000..4b7ed18
--- /dev/null
+++ b/cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Cals_from_Fat_and_Carbs

+{

+    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 calsFromFatAndCarbs());

+        }

+    }

+}