This commit is contained in:
nub31
2025-01-28 17:37:09 +01:00
parent cddf4c4f78
commit 6356e37f77
45 changed files with 59 additions and 57 deletions

View File

@@ -0,0 +1,6 @@
namespace Nub.Lang.Frontend.Lexing;
public class IdentifierToken(string value) : Token
{
public string Value { get; } = value;
}