Files
markdig/src/Markdig.Tests/Program.cs
2016-04-18 05:37:36 +09:00

14 lines
352 B
C#

// Copyright (c) Alexandre Mutel. All rights reserved.
// This file is licensed under the BSD-Clause 2 license.
// See the license.txt file in the project root for more information.
namespace Markdig.Tests
{
public class Program
{
public static void Main()
{
new TestPlayParser().TestSimple();
}
}
}