move Token out of lexer

This commit is contained in:
Raptorox 2026-05-21 14:08:50 +02:00
parent ad7a8ad879
commit a4eed5214e
No known key found for this signature in database
GPG key ID: 8B3556FC3ED1F6D8
3 changed files with 24 additions and 22 deletions

View file

@ -1,5 +1,6 @@
use std::{fs::File, io::Read};
mod token;
mod lexer;
use lexer::Lexer;