global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / gcd.php
blobc15c1d5d4b70f2a3129115e46749a83445ed98f6
1 <?hh
2 function gcd($x, $y) {
3 if ($x >= $y) {
4 $a = $x;
5 $b = $y;
6 } else {
7 $a = $y;
8 $b = $x;
10 if ($b <= 0) {
11 if ($b >= 0) {
12 return $a+0;
15 return gcd($b+0, $a-$b);
17 echo gcd(330, 462);
18 echo "\n";