added string.sub()

This commit is contained in:
2020-12-31 02:26:06 -06:00
parent e993cdd9fa
commit e253129e50
4 changed files with 71 additions and 17 deletions

View File

@@ -371,7 +371,6 @@ static void alignStack(CParseState *pstate, int alignment) {
writePop(pstate, pstate->compiler->pushedValues - alignment);
} else if (pstate->compiler->pushedValues < alignment) {
error(pstate, "Missing expression!");
printf("%d < %d\n", pstate->compiler->pushedValues, alignment);
}
pstate->compiler->pushedValues = alignment;