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

        by: Sharon Tuttle
        last modified: 2026-04-01
    ===*/

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