Add sonarqube test

This commit is contained in:
2024-08-09 02:22:44 +02:00
parent 40fad6bae8
commit b672828792
7 changed files with 300 additions and 9 deletions

View File

@@ -0,0 +1,6 @@
def greet(name):
return f"Hola, {name}!"
if __name__ == "__main__":
print(greet("Mundo"))

View File

@@ -0,0 +1,6 @@
def add(a, b):
return a + b
def subtract(a, b):
return a - b