TipTaxTotal, DistanceTraveled, CtoFandFtoC

This commit is contained in:
2022-09-06 14:32:37 -05:00
parent 5576351339
commit bb25fe9ac8
93 changed files with 1200 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
namespace DistanceTraveled_CalebFontenot
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}