Help for this page

Select Code to Download


  1. or download this
    sub xcmp
    {
    ...
      $x = sub { return $count };
      return $x;
    }
    
  2. or download this
    sub xcmp
    {
    ...
       sub get_count { return $count }
       return &get_count;
    }