using System;
using NUnit.Framework;
public class Program
{
/// <summary>
/// Create an .Net Core app that can fulfill following requirements for specific variant assigned to you
/// Variant a) calculate area of triangle, rectangle
/// Variant b) perform math operation: multiplication, division between 2 numbers
/// Variant c) can increase, decrease a virtual car speed by given value, and show current car speed
/// Any implementation should conform to following rules:
/// 1) Follow .Net general coding guidelines (https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/)
/// 2) Solution should be done using TDD approach
/// 3) Follow OOD/SOLID principles and other coding best practices
/// </summary>
public static void Main()
Console.WriteLine("Hello World");
}
[TestFixture]
public class HelloWorldTestFixture
[Test(Description = "Hello World Test")]
public void Test_Pass()
Assert.True(true);