Usage

This is a placeholder for putting the main code for your module.

hello(name: str) None[source]

Print hello.

square(x: int) int[source]

Square the number.

Parameters:

x – An integer to square

Returns:

The integer, squared

>>> square(5)
25