This commit is contained in:
2021-09-03 03:07:58 +01:00
parent a92bee32e1
commit 71de903f13
5 changed files with 99 additions and 1 deletions

17
test/isn.tests/Engine.cs Normal file
View File

@ -0,0 +1,17 @@
using static isn.tests.Tests;
namespace isn.tests
{
internal class Engine : INeedEngine
{
public Engine()
{
}
public object Parse(string code)
{
throw new System.NotImplementedException();
}
}
}