diff --git a/src/compile.c b/src/compile.c index ad2d314..b9e2ec4 100644 --- a/src/compile.c +++ b/src/compile.c @@ -334,6 +334,15 @@ char* compile(tSyntaxElement* syntaxtree) { compile_exit_tag(&result); + } else if (strcmp(token->content.string, "use") == 0) { + + compile_enter_tag(&result); + + string_append(&result, "use "); + string_append_free(&result,compile_expression(token->next)); + + compile_exit_tag(&result); + } else if (strcmp(token->content.string, "if") == 0) { compile_enter_tag(&result);