dirge-agent 0.12.5

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
"""
Minimal Python module for DAP module-launch integration test.

Run with: python -m test_mod
"""

from __future__ import annotations


def main():
    x = 1
    y = 2
    z = x + y
    breakpoint()  # stop here for DAP
    print(f"z = {z}")


if __name__ == "__main__":
    main()