using Graphing.Forms; using Graphing.Graphables; namespace Graphing.Testing; internal static class Program { [STAThread] public static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.SetHighDpiMode(HighDpiMode.PerMonitorV2); GraphForm graph = new("One Of The Graphing Calculators Of All Time"); graph.Graph(new Equation(Math.Cos)); Application.Run(graph); } }