<?php
    /*===
        function: square: float -> float
        purpose: expects a number, returns the square of
            that number
        examples:
            square(2.5) == 6.25
            square(4)   == 16
    ===*/

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