Help for this page

Select Code to Download


  1. or download this
        sub easy_to_move {
            my @params = @_;
    ...
            $result = [some simple manipulation of @params]
            return ($result);
        }
    
  2. or download this
        sub hard_to_move {
            my @params = @_;
    ...
            $result = [something that involves $anchor];
            return ($result);
        }