Rewritten the expression parser, tldr that '.' is actually right associative binary operator, I brain farted really hard this time

This commit is contained in:
Krzosa Karol
2022-06-01 18:59:38 +02:00
parent 364daed1c7
commit 494a937d1f
5 changed files with 103 additions and 88 deletions

View File

@@ -95,7 +95,7 @@ int main(){
test_intern_table();
String result = {};
#if 0
#if 1
result = compile_file("globals.kl"_s);
printf("%s", result.str);
result = compile_file("enums.kl"_s);