16 lines
No EOL
312 B
C#
16 lines
No EOL
312 B
C#
namespace KumiScript.Interpreter
|
|
{
|
|
public class StringExpression : Expression
|
|
{
|
|
string _value;
|
|
public StringExpression(string str)
|
|
{
|
|
_value = str;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "\"" + _value + "\"";
|
|
}
|
|
}
|
|
} |