`
<?php
    /* this is an external PHP file. */

    /* NOTICE you MUST have PHP tags! */

    /*----
        signature: square: number -> number
        purpose: expects a number, and returns the 
                 square of that number
    ----*/

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