diff --git a/src/compile.c b/src/compile.c index 74fcb14..50fd27a 100644 --- a/src/compile.c +++ b/src/compile.c @@ -302,6 +302,13 @@ 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, "#}"); + } }