Skip to content

Commit

Permalink
add: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jkgenser committed May 30, 2024
0 parents commit 1596197
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions example_script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import os

os.environ['PYTHONBREAKPOINT']="ipdb.set_trace"

def main():
x = 1
y = 2

z = x + y
breakpoint()

print(f"z is :{z}")


if __name__ == "__main__":
main()
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ipdb
ipython

0 comments on commit 1596197

Please sign in to comment.