nvim-dap/spec/example.py
2024-05-31 19:01:17 +02:00

15 lines
171 B
Python
Executable file

#!/usr/bin/env python3
import os
def main():
cwd = os.getcwd()
print(cwd)
a = 10
b = 30
return print(a + b)
if __name__ == '__main__':
main()