mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-29 14:55:23 +00:00
17 lines
233 B
PHP
17 lines
233 B
PHP
|
<?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;
|
||
|
}
|
||
|
?>
|