diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | 9581dccd5b4e0189ce45f49c78f9d666034524b2 (patch) | |
tree | 2e350d474e0881e1c1b6ac0ddbe33d70a671c05c /cals_from_fat_and_carbs/Cals from Fat and Carbs/Program.cs | |
parent | most common char (diff) | |
download | wf-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar wf-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar.gz wf-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar.bz2 wf-9581dccd5b4e0189ce45f49c78f9d666034524b2.tar.xz wf-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.cs | 22 |
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()); + } + } +} |