20 lines
365 B (Stored with Git LFS)
C#
20 lines
365 B (Stored with Git LFS)
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;
|
|
}
|
|
}
|
|
}
|