Source code for smrtsquare.core

"""Core functions of the square module."""

__all__ = ['square']

[docs]def square(x: float) -> float: """Returns the square of the given argument.""" return x ** 2.