trueskill/PHPSkills/Numerics/BasicMath.php

17 lines
233 B
PHP
Raw Normal View History

<?php
/**
* Basic math functions.
*
* PHP version 5
*
* @category Math
* @package PHPSkills
* @author Jeff Moser <jeff@moserware.com>
* @copyright 2010 Jeff Moser
*/
function square($x)
{
return $x * $x;
}
?>