17 lines
269 B
C#
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();
|
|
}
|
|
}
|
|
} |