CHANGELOG.md
DECISIONS.md
DESIGN.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
examples/arithmetic.tn
examples/channels.tn
examples/closures.tn
examples/collections.tn
examples/fib.tn
examples/fizzbuzz.tn
examples/generics.tn
examples/hello.tn
examples/options.tn
examples/select.tn
examples/shapes.tn
examples/wordfreq.tn
tantu/__init__.py
tantu/__main__.py
tantu/ast_nodes.py
tantu/bytecode.py
tantu/checker.py
tantu/cli.py
tantu/compiler.py
tantu/errors.py
tantu/exhaustive.py
tantu/lexer.py
tantu/linker.py
tantu/parser.py
tantu/prelude.py
tantu/repl.py
tantu/resolve.py
tantu/tokens.py
tantu/ttypes.py
tantu/values.py
tantu/vm.py
tantu.egg-info/PKG-INFO
tantu.egg-info/SOURCES.txt
tantu.egg-info/dependency_links.txt
tantu.egg-info/entry_points.txt
tantu.egg-info/requires.txt
tantu.egg-info/top_level.txt
tests/conftest.py
tests/harness.py
tests/test_checker.py
tests/test_cli.py
tests/test_compiler.py
tests/test_concurrency.py
tests/test_examples.py
tests/test_fuzz.py
tests/test_generics.py
tests/test_golden.py
tests/test_lexer.py
tests/test_modules.py
tests/test_packaging.py
tests/test_parser.py
tests/test_pipeline.py
tests/test_repl.py
tests/test_select.py
tests/test_step_limit.py
tests/test_vm.py
tests/__pycache__/conftest.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/harness.cpython-312.pyc
tests/__pycache__/test_checker.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_cli.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_compiler.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_concurrency.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_examples.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_fuzz.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_generics.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_golden.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_lexer.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_modules.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_packaging.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_parser.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_pipeline.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_repl.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_select.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_step_limit.cpython-312-pytest-8.3.4.pyc
tests/__pycache__/test_vm.cpython-312-pytest-8.3.4.pyc
tests/golden/dis/and_or.txt
tests/golden/dis/arith.txt
tests/golden/dis/channels.txt
tests/golden/dis/for_loop.txt
tests/golden/dis/function.txt
tests/golden/dis/generic_erasure.txt
tests/golden/dis/if_stmt.txt
tests/golden/dis/match.txt
tests/golden/dis/multi.txt
tests/golden/dis/select.txt
tests/golden/dis/unary_mod.txt
tests/golden/dis/while_loop.txt
tests/golden/error/arity.err
tests/golden/error/arity.tn
tests/golden/error/break_outside.err
tests/golden/error/break_outside.tn
tests/golden/error/cannot_infer_none.err
tests/golden/error/cannot_infer_none.tn
tests/golden/error/dangling_op.err
tests/golden/error/dangling_op.tn
tests/golden/error/empty_list_infer.err
tests/golden/error/empty_list_infer.tn
tests/golden/error/generic_cannot_infer.err
tests/golden/error/generic_cannot_infer.tn
tests/golden/error/generic_dup_param.err
tests/golden/error/generic_dup_param.tn
tests/golden/error/generic_not_value.err
tests/golden/error/generic_not_value.tn
tests/golden/error/generic_unbound_param.err
tests/golden/error/generic_unbound_param.tn
tests/golden/error/illegal_char.err
tests/golden/error/illegal_char.tn
tests/golden/error/immutable.err
tests/golden/error/immutable.tn
tests/golden/error/index_not_int.err
tests/golden/error/index_not_int.tn
tests/golden/error/lambda_question.err
tests/golden/error/lambda_question.tn
tests/golden/error/missing_return.err
tests/golden/error/missing_return.tn
tests/golden/error/module_var_in_fn.err
tests/golden/error/module_var_in_fn.tn
tests/golden/error/non_bool_cond.err
tests/golden/error/non_bool_cond.tn
tests/golden/error/non_exhaustive.err
tests/golden/error/non_exhaustive.tn
tests/golden/error/not_a_variant.err
tests/golden/error/not_a_variant.tn
tests/golden/error/question_mismatch.err
tests/golden/error/question_mismatch.tn
tests/golden/error/two_errors.err
tests/golden/error/two_errors.tn
tests/golden/error/type_mismatch.err
tests/golden/error/type_mismatch.tn
tests/golden/error/undefined_name.err
tests/golden/error/undefined_name.tn
tests/golden/error/unexpected_end_of_line.err
tests/golden/error/unexpected_end_of_line.tn
tests/golden/error/unreachable_arm.err
tests/golden/error/unreachable_arm.tn
tests/golden/error/var_capture.err
tests/golden/error/var_capture.tn
tests/golden/modules/generic_lib/expected.out
tests/golden/modules/generic_lib/main.tn
tests/golden/modules/generic_lib/util.tn
tests/golden/modules/let_member/counter.tn
tests/golden/modules/let_member/expected.out
tests/golden/modules/let_member/main.tn
tests/golden/modules/two_file/expected.out
tests/golden/modules/two_file/main.tn
tests/golden/modules/two_file/mathlib.tn
tests/golden/panic/deadlock.out
tests/golden/panic/deadlock.tn
tests/golden/panic/deep_panic.out
tests/golden/panic/deep_panic.tn
tests/golden/panic/div_zero.out
tests/golden/panic/div_zero.tn
tests/golden/panic/index_oob.out
tests/golden/panic/index_oob.tn
tests/golden/panic/mod_zero.out
tests/golden/panic/mod_zero.tn
tests/golden/panic/negative_cap.out
tests/golden/panic/negative_cap.tn
tests/golden/panic/send_on_closed.out
tests/golden/panic/send_on_closed.tn
tests/golden/panic/stack_overflow.out
tests/golden/panic/stack_overflow.tn
tests/golden/panic/trunc_inf.out
tests/golden/panic/trunc_inf.tn
tests/golden/panic/trunc_nan.out
tests/golden/panic/trunc_nan.tn
tests/golden/run/arith.out
tests/golden/run/arith.tn
tests/golden/run/bindings.out
tests/golden/run/bindings.tn
tests/golden/run/block_value.out
tests/golden/run/block_value.tn
tests/golden/run/buffered_chan.out
tests/golden/run/buffered_chan.tn
tests/golden/run/channels_showcase.out
tests/golden/run/channels_showcase.tn
tests/golden/run/closure.out
tests/golden/run/closure.tn
tests/golden/run/color_match.out
tests/golden/run/color_match.tn
tests/golden/run/comparison.out
tests/golden/run/comparison.tn
tests/golden/run/design_2_6.out
tests/golden/run/design_2_6.tn
tests/golden/run/design_2_8.out
tests/golden/run/design_2_8.tn
tests/golden/run/fanin.out
tests/golden/run/fanin.tn
tests/golden/run/fib.out
tests/golden/run/fib.tn
tests/golden/run/fizzbuzz.out
tests/golden/run/fizzbuzz.tn
tests/golden/run/float.out
tests/golden/run/float.tn
tests/golden/run/floordiv.out
tests/golden/run/floordiv.tn
tests/golden/run/for_sum.out
tests/golden/run/for_sum.tn
tests/golden/run/generic_chan.out
tests/golden/run/generic_chan.tn
tests/golden/run/generic_map.out
tests/golden/run/generic_map.tn
tests/golden/run/generic_pair.out
tests/golden/run/generic_pair.tn
tests/golden/run/generic_tree.out
tests/golden/run/generic_tree.tn
tests/golden/run/hello.out
tests/golden/run/hello.tn
tests/golden/run/if_expr.out
tests/golden/run/if_expr.tn
tests/golden/run/list_builtins.out
tests/golden/run/list_builtins.tn
tests/golden/run/literal_match.out
tests/golden/run/literal_match.tn
tests/golden/run/logic.out
tests/golden/run/logic.tn
tests/golden/run/mod.out
tests/golden/run/mod.tn
tests/golden/run/multi.out
tests/golden/run/multi.tn
tests/golden/run/mutual_rec.out
tests/golden/run/mutual_rec.tn
tests/golden/run/no_main.out
tests/golden/run/no_main.tn
tests/golden/run/option.out
tests/golden/run/option.tn
tests/golden/run/option_chain.out
tests/golden/run/option_chain.tn
tests/golden/run/pingpong.out
tests/golden/run/pingpong.tn
tests/golden/run/pingpong_b1.out
tests/golden/run/pingpong_b1.tn
tests/golden/run/precedence.out
tests/golden/run/precedence.tn
tests/golden/run/result.out
tests/golden/run/result.tn
tests/golden/run/result_pipeline.out
tests/golden/run/result_pipeline.tn
tests/golden/run/shadowing.out
tests/golden/run/shadowing.tn
tests/golden/run/shape_area.out
tests/golden/run/shape_area.tn
tests/golden/run/sleep_order.out
tests/golden/run/sleep_order.tn
tests/golden/run/strings.out
tests/golden/run/strings.tn
tests/golden/run/structs.out
tests/golden/run/structs.tn
tests/golden/run/tuple_match.out
tests/golden/run/tuple_match.tn
tests/golden/run/tuples.out
tests/golden/run/tuples.tn
tests/golden/run/unary.out
tests/golden/run/unary.tn
tests/golden/run/while_sum.out
tests/golden/run/while_sum.tn
tests/golden/run/wordfreq.out
tests/golden/run/wordfreq.tn