Skip to content

Commit 623d10f

Browse files
committed
lengthened mul
1 parent de043e7 commit 623d10f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/demo/foo.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ def sub(a, b):
1414

1515

1616
def mul(a, b):
17-
return a*b
17+
print("hello")
18+
result = a*b
19+
print("After Result caluclated")
20+
return result
1821

1922

2023
def div(a, b):

0 commit comments

Comments
 (0)