This commit is contained in:
nub31
2025-01-26 01:15:02 +01:00
parent a6f2bb132b
commit 8c51c31927
24 changed files with 426 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
using Nub.Lang.Lexing;
var src = File.ReadAllText(args[0]);
var lexer = new Lexer(src);
var tokens = lexer.Lex();