<?php
//zcephp5 operators
function cc($n)
{
 if($n>0)
  {
    cc(--$n);
    echo ".";
  }else
  {
   return $n;
  }
}
cc(4);
?>
