Files
isn/test/isn.tests/Engine.cs
2021-09-03 03:07:58 +01:00

17 lines
269 B
C#

using static isn.tests.Tests;
namespace isn.tests
{
internal class Engine : INeedEngine
{
public Engine()
{
}
public object Parse(string code)
{
throw new System.NotImplementedException();
}
}
}