Basic list support

This commit is contained in:
2025-10-29 17:59:26 +00:00
parent 7e071a1b01
commit 26c1b7dd0f
5 changed files with 152 additions and 80 deletions

View File

@@ -15,7 +15,7 @@
class Lexer {
private:
std::vector<char> delimiters = {
'(', ')', '{', '}', '.', '\n', ' '
'(', ')', '{', '}', '[', ']', '.', '\n', ' ', ','
};
std::string file;
size_t incrementor = -1;