RulesEngine/demo/DemoApp/Program.cs

15 lines
288 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
{
public static class Program
2019-08-13 06:06:57 -04:00
{
public static void Main(string[] args)
2019-08-13 06:06:57 -04:00
{
new BasicDemo().Run();
new NestedInputDemo().Run();
2019-08-13 06:06:57 -04:00
}
}
}