2024-01-26 05:37:51 +00:00
|
|
|
namespace KumiScript.Interpreter
|
|
|
|
{
|
|
|
|
public class Symbol
|
|
|
|
{
|
|
|
|
readonly string _name;
|
|
|
|
public Symbol(string name)
|
|
|
|
{
|
|
|
|
_name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool Equals(Symbol s)
|
|
|
|
{
|
2024-07-12 00:17:00 +00:00
|
|
|
return ReferenceEquals(this, s);
|
2024-01-26 05:37:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
return _name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|