Label
using System.Runtime.CompilerServices;
namespace CLanguage.Interpreter
{
public class Label
{
public int Index { get; set; }
[System.Runtime.CompilerServices.NullableContext(1)]
public override string ToString()
{
return "L_" + Index.ToString();
}
}
}