RulesEngine/demo/DemoApp/Program.cs

15 lines
288 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace DemoApp
{
public static class Program
{
public static void Main(string[] args)
{
new BasicDemo().Run();
new NestedInputDemo().Run();
}
}
}