This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/Nub.Lang/Nub.Lang/Frontend/Lexing/IdentifierToken.cs
2025-01-28 17:37:09 +01:00

6 lines
136 B
C#

namespace Nub.Lang.Frontend.Lexing;
public class IdentifierToken(string value) : Token
{
public string Value { get; } = value;
}