Source code for biognosis.api
"""This is a placeholder for putting the main code for your module."""
__all__ = [
"hello",
"square",
]
[docs]
def square(x: int) -> int:
"""Square the number.
:param x: An integer to square
:returns: The integer, squared
>>> square(5)
25
"""
return x**2