Generating nested structs

This commit is contained in:
Krzosa Karol
2022-05-31 16:12:18 +02:00
parent ef9c2f4ee5
commit 7dfc4c7b36
5 changed files with 58 additions and 39 deletions

View File

@@ -88,9 +88,13 @@ int main(){
String result = {};
result = compile_file("globals.kl"_s);
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);