using Towel.Measurements;
using static Towel.Measurements.MeasurementUnitsSyntax;
public static void Main()
Angle<float> angle1 = new Angle<float>(5f, Degrees);
Angle<float> angle2 = new Angle<float>(.1f, Radians);
Console.WriteLine(angle1 + angle2);
Console.WriteLine("Hello World");