Skip to content

Commit

Permalink
Commit inicial.
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoruscitti committed Mar 25, 2022
1 parent f879243 commit 3eef5be
Show file tree
Hide file tree
Showing 4 changed files with 815 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# instrumentador

Instrumentador de código

```
python -m my_trace --trace demo.py
```
15 changes: 15 additions & 0 deletions demo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
x = 1

if x == 1:
x += 2

def sumar(a, b):
resultado = a+b
return resultado

y = sumar(x, 3)

x += 2

for x in range(3):
x += 2
Loading

0 comments on commit 3eef5be

Please sign in to comment.