Compile string, working on scopes

This commit is contained in:
Krzosa Karol
2022-05-25 15:17:08 +02:00
parent b945f3affd
commit f4c05923c9
9 changed files with 125 additions and 136 deletions

View File

@@ -10,15 +10,18 @@
int main(){
test_os_memory();
thread_ctx_init();
test_gen();
test_unicode();
test_resolve();
test_types();
test_parse_expr();
map_test();
test_array();
test_string_builder();
test_intern_table();
lex_test();
String result = compile_file("lambdas.kl"_s);
printf("%s", result.str);
compile_file("globals.kl"_s);
__debugbreak();
}