LICENSE
README.md
pyproject.toml
src/kale/__init__.py
src/kale/__main__.py
src/kale/cli.py
src/kale/ast/__init__.py
src/kale/ast/nodes.py
src/kale/ast/printer.py
src/kale/binding/__init__.py
src/kale/binding/binder.py
src/kale/binding/bound_nodes.py
src/kale/binding/module_loader.py
src/kale/binding/scope.py
src/kale/binding/symbols.py
src/kale/binding/types.py
src/kale/codegen/__init__.py
src/kale/codegen/c_emitter.py
src/kale/codegen/compiler_driver.py
src/kale/codegen/llvm_driver.py
src/kale/codegen/llvm_emitter.py
src/kale/codegen/llvm_jit.py
src/kale/codegen/llvm_types.py
src/kale/diagnostics/__init__.py
src/kale/diagnostics/diagnostic.py
src/kale/diagnostics/diagnostic_bag.py
src/kale/diagnostics/source_text.py
src/kale/diagnostics/text_location.py
src/kale/diagnostics/text_span.py
src/kale/parser/__init__.py
src/kale/parser/parser.py
src/kale/syntax/__init__.py
src/kale/syntax/lexer.py
src/kale/syntax/syntax_facts.py
src/kale/syntax/syntax_kind.py
src/kale/syntax/syntax_token.py
src/kale_lang.egg-info/PKG-INFO
src/kale_lang.egg-info/SOURCES.txt
src/kale_lang.egg-info/dependency_links.txt
src/kale_lang.egg-info/entry_points.txt
src/kale_lang.egg-info/requires.txt
src/kale_lang.egg-info/top_level.txt
tests/test_arcade.py
tests/test_arrays.py
tests/test_binder.py
tests/test_bindings_win32.py
tests/test_bitwise_and_casts.py
tests/test_codegen.py
tests/test_editor.py
tests/test_editor_supercharged.py
tests/test_editor_syntax.py
tests/test_enums_and_switch.py
tests/test_ffi_and_io.py
tests/test_floats.py
tests/test_function_pointers.py
tests/test_functions.py
tests/test_generics.py
tests/test_int32.py
tests/test_json.py
tests/test_kale_self.py
tests/test_kale_self_checker.py
tests/test_kale_self_codegen.py
tests/test_kale_self_driver.py
tests/test_kale_self_lexer.py
tests/test_kv_daemon.py
tests/test_lexer.py
tests/test_linker_args.py
tests/test_llvm_driver.py
tests/test_llvm_emitter.py
tests/test_llvm_jit.py
tests/test_matrix.py
tests/test_matrix_math.py
tests/test_modules.py
tests/test_net_http.py
tests/test_operator_overloading.py
tests/test_parser.py
tests/test_pointers.py
tests/test_shell.py
tests/test_std_collections.py
tests/test_std_format.py
tests/test_std_fs.py
tests/test_std_generics.py
tests/test_std_map.py
tests/test_std_mem.py
tests/test_std_string_builder.py
tests/test_std_text.py
tests/test_struct_methods.py
tests/test_struct_zero_init.py
tests/test_structs.py
tests/test_ui_geom.py