Compare commits

..

No commits in common. "5cc866637ef5ba76b3b73dd3dd5dbbf076299b51" and "57af99e53aba4e0a1305cdb271387573b5b3f6f9" have entirely different histories.

2 changed files with 0 additions and 9 deletions

View File

@ -302,13 +302,6 @@ char* compile(tSyntaxElement* syntaxtree) {
string_append(&result,compile_expression(token->next));
string_append(&result, "}}");
} else {
string_append(&result, "{#");
string_append(&result, "Unknown keyword: ");
string_append(&result, token->content.string);
string_append(&result, "#}");
}
}

View File

@ -31,8 +31,6 @@ int main(int argc, char *argv[]) {
return 1;
}
process(code, NULL);
printf("%s\n", compile(code));
se_free(code);