global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / incdec-1.php
blob84d2374ed3fc43f27f5e7392dcc5bdcd3728e4df
1 <?hh
3 function dec($x) {
4 return $x + -1;
7 function inc($x) {
8 return $x - (-1);
11 var_dump(dec(5));
12 var_dump(inc(5));