Files
slic/functions/math_utils.py
yasmine_tligui 47508f32fc
Run Pytest with Allure and Coverage Reports / tests (push) Successful in 37s
Functions files
2025-07-14 11:47:35 +02:00

9 lines
115 B
Python

def addition(a, b):
return a + b
def division(a, b):
return a / b
def multiply(a, b):
return a * b