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/lang/Nub.Lang/Frontend/Lexing/LiteralToken.cs
nub31 5f2d1ff3f9 ...
2025-05-04 16:02:48 +02:00

7 lines
188 B
C#

namespace Nub.Lang.Frontend.Lexing;
public class LiteralToken(NubType type, string value) : Token
{
public NubType Type { get; } = type;
public string Value { get; } = value;
}