LICENSE
README.md
pyproject.toml
src/echo_cli.py
src/main.py
src/echo/__init__.py
src/echo/__main__.py
src/echo/errors.py
src/echo/formatter.py
src/echo/linter.py
src/echo/cli/__init__.py
src/echo/cli/main.py
src/echo/cli/test_runner.py
src/echo/core/__init__.py
src/echo/core/hashes.py
src/echo/core/jsonutil.py
src/echo/core/lists.py
src/echo/core/strings.py
src/echo/frontend/__init__.py
src/echo/frontend/lexer.py
src/echo/frontend/parser.py
src/echo/frontend/tokens.py
src/echo/frontend/ast/__init__.py
src/echo/frontend/ast/nodes.py
src/echo/modules/__init__.py
src/echo/modules/graph.py
src/echo/modules/loader.py
src/echo/modules/records.py
src/echo/modules/resolver.py
src/echo/runtime/__init__.py
src/echo/runtime/builtin_types.py
src/echo/runtime/builtins.py
src/echo/runtime/class_registry.py
src/echo/runtime/context.py
src/echo/runtime/errors.py
src/echo/runtime/freeze.py
src/echo/runtime/functions.py
src/echo/runtime/host.py
src/echo/runtime/instances.py
src/echo/runtime/interpreter.py
src/echo/runtime/operators.py
src/echo/runtime/testing.py
src/echo/runtime/values.py
src/echo/semantics/__init__.py
src/echo/semantics/analyzer.py
src/echo/semantics/errors.py
src/echo/semantics/modules.py
src/echo/semantics/scope.py
src/echo/semantics/symbols.py
src/echolang.egg-info/PKG-INFO
src/echolang.egg-info/SOURCES.txt
src/echolang.egg-info/dependency_links.txt
src/echolang.egg-info/entry_points.txt
src/echolang.egg-info/requires.txt
src/echolang.egg-info/top_level.txt
tests/test_builtins.py
tests/test_cli.py
tests/test_examples.py
tests/test_language_behavior.py