Первый

This commit is contained in:
SkrinVex
2025-12-25 12:36:05 +05:00
commit a3e44d6a58
10 changed files with 353 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include <vector>
#include <string>
#include "Token.h"
class Lexer {
std::string source;
size_t pos = 0;
int line = 1;
public:
Lexer(std::string src);
std::vector<Token> tokenize();
};