Added mul function.
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-04-01 12:29:25 +03:00
parent 7b0365891a
commit b236f6ab73
2 changed files with 13 additions and 2 deletions
+5 -1
View File
@@ -1,3 +1,7 @@
def sum(a, b):
return a+b
return a+b
def mul(a, b):
return a*b