20 lines
365 B
C#
20 lines
365 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Language.Lua
|
|||
|
{
|
|||
|
public partial class Term : Expr
|
|||
|
{
|
|||
|
public override LuaValue Evaluate(LuaTable enviroment)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public override Term Simplify()
|
|||
|
{
|
|||
|
return this;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|