RValue, LValue concept working, Assigning to numbers is now illegal!

This commit is contained in:
Krzosa Karol
2022-06-01 13:28:38 +02:00
parent a5267bb8ae
commit 02b6a1c85b
4 changed files with 6 additions and 8 deletions

View File

@@ -93,12 +93,12 @@ int main(){
printf("%s", result.str);
result = compile_file("enums.kl"_s);
printf("%s", result.str);
result = compile_file("lambdas.kl"_s);
printf("%s", result.str);
result = compile_file("order1.kl"_s);
printf("%s", result.str);
result = compile_file("order2.kl"_s);
printf("%s", result.str);
result = compile_file("lambdas.kl"_s);
printf("%s", result.str);
__debugbreak();
}