<?php
    /*===
        signature: square: float -> float
	purpose: expects any number, and returns the square of
	    that number

        by: Sharon Tuttle
	last modified: 2025-04-05
    ===*/

    function square($num)
    {
        return $num * $num;
    }
?>