Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: How do I go from procedural to object oriented programming?

by Lady_Aleena (Priest)
on Apr 27, 2015 at 02:29 UTC ( [id://1124826]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # returns a string for a single crossover. The input is a hash ref.
    sub get_crossover {
    ...
    
      return $crossover_text;
    }
    
  2. or download this
    # creates a link to the Movies_by_series page. It is used in series_te
    +xt, get_crossover, and elsewhere.
    sub search_link {
    ...
    
      return $search_text; 
    }
    
  3. or download this
    # returns the title in italics and the start year in parentheses.
    sub display_simple_movie {
    ...
      
      return $item;
    }
    
  4. or download this
    # returns the title in italics and the start year in parentheses.
    sub display_simple_movie {
    ...
      
      return $item;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1124826]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-03-29 09:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found