ast updated
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user