RulesEngine/demo/DemoApp/Program.cs

15 lines
274 B
C#
Raw Normal View History

2019-08-13 06:06:57 -04:00
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace DemoApp
{
static class Program
2019-08-13 06:06:57 -04:00
{
static void Main(string[] args)
{
new BasicDemo().Run();
new NestedInputDemo().Run();
2019-08-13 06:06:57 -04:00
}
}
}