This commit is contained in:
Krzosa Karol
2022-05-31 15:53:49 +02:00
parent 04d38511a9
commit ef9c2f4ee5
3 changed files with 63 additions and 71 deletions

View File

@@ -48,6 +48,7 @@ For now I don't thing it should be overloadable.
[ ] - For loop
[ ] - Switch
[ ] - More basic types
[ ] - Array of inferred size
[ ] - Lexer: Need to insert scope endings when hitting End of file
[ ] - Add single line lambda expressions
@@ -88,9 +89,9 @@ int main(){
String result = {};
result = compile_file("globals.kl"_s);
result = compile_file("enums.kl"_s);
result = compile_file("order2.kl"_s);
result = compile_file("lambdas.kl"_s);
result = compile_file("order1.kl"_s);
result = compile_file("order2.kl"_s);
printf("%s", result.str);
__debugbreak();