This repository was archived by the owner on Jan 27, 2021. It is now read-only.

Description
Currently doing
Interpreter.CreateSymbolTableDelegate extension = itpr =>
{
return new Dictionary<Symbol, object>
{
[Symbol.FromString("exit")] = NativeProcedure.Create<int>(Exit,"exit"),
};
};
where Exit is defined as
private static int Exit()
{
System.Environment.Exit(1);
return 1;
}
Would be nicer to be able to specify System.Environment.Exit in the .Create