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/src/compiler/Nub.Lang/Frontend/Lexing/LiteralToken.cs
2025-05-05 19:26:23 +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;
}