Metadata-Version: 2.4
Name: horusso_calculator
Version: 0.1.0
Summary: Packages just for learning purposes related to a calculator
Author: Horusso
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# Math Operations Script

This script provides basic arithmetic functions for addition, subtraction, multiplication, and division.

## Implementation

```python
#!/usr/bin/env python3

def sum(x, y):
    """Returns the sum of x and y."""
    return x + y

def res(x, y):
    """Returns the difference of x and y."""
    return x - y

def mult(x, y):
    """Returns the product of x and y."""
    return x * y

def div(x, y):
    """
    Returns the division of x by y. 
    Returns None if y is 0 to avoid ZeroDivisionError.
    """
    if y != 0:
        return x / y
    else:
        return None
