debugger-cli 0.1.3

LLM-friendly debugger CLI using the Debug Adapter Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11

import sys

def main():
    x = 10
    y = 20
    print(f"Hello from Python! Sum is {x+y}")
    return 0

if __name__ == "__main__":
    sys.exit(main())