15 lines
288 B (Stored with Git LFS)
C#
15 lines
288 B (Stored with Git LFS)
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Language.Lua
|
|
{
|
|
public partial class VariableArg : Term
|
|
{
|
|
public override LuaValue Evaluate(LuaTable enviroment)
|
|
{
|
|
return enviroment.GetValue(this.Name);
|
|
}
|
|
}
|
|
}
|