Add "neg" and "not" keywords

This commit is contained in:
bʰedoh₂ swé 2024-06-11 15:59:53 +05:00
parent 8bf0af96ee
commit a1d14e8cfa

View File

@ -175,6 +175,16 @@ char* compile_expression(tSyntaxElement* syntaxelement) {
string_append(&result,compile_expression(token->next->next));
string_append(&result,"]");
} else if (strcmp(token->content.string, "neg") == 0) {
string_append(&result,"-");
string_append(&result,compile_expression_wrapped(token->next));
} else if (strcmp(token->content.string, "not") == 0) {
string_append(&result,"not");
string_append(&result,compile_expression_wrapped(token->next));
} else {
string_append(&result,token->content.string);