ast updated

This commit is contained in:
2026-05-17 16:30:49 +03:00
parent 208d34864e
commit 24750ddcbe
20 changed files with 194 additions and 38 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
#include <string>
std::string getIndent(int indentSize) {
std::string indents;
for (int i = 0; i < indentSize; ++i) {
indents += " ";
}
return indents;
}