Add simple_code

This commit is contained in:
Dan01 2025-03-17 11:23:39 +00:00
commit 56fba33238
1 changed files with 9 additions and 0 deletions

9
simple_code Normal file
View File

@ -0,0 +1,9 @@
# test_repo/my_module.py
def add(a, b):
"""Adds two numbers."""
return a + b
def multiply(a, b):
"""Multiplies two numbers."""
return a * b