RulesEngine/demo/DemoApp/Program.cs

15 lines
274 B
C#

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