Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

The thing is, you can write Perl in a very C-like manner. (Some people like to play the sport where you write programs which will compile as both valid C and valid Perl!) Writing Perl that way will probably not take you long to pick up...

# Function to add a list of numbers together sub sum { my @numbers = @_; my $sum = 0; for (my $i = 0; $i <= $#numbers; $i++) { $sum += $numbers[$i]; } return $sum; }

But on the other hand, this function might look more foreign to you, but if you had experience writing Haskell or Miranda would seem perfectly obvious:

use List::Util 'reduce'; sub sum { my @numbers = @_; return reduce { $a + $b } @numbers; }

A seasoned Perl programmer will probably have discovered that the following knocks the socks off both of the above performance-wise...

sub sum { my $sum; $sum += $_ for @_; return $sum; }

But once you'd gained familiarity with the core libraries and with CPAN, you'd realise that List::Util (from which we borrowed the reduce keyword earlier) has a sum function available, and it runs about 40 times faster that the first example given above. :-) So you'd just borrow that...

use List::Util 'sum';

So in answer to your question, it might take you a couple of days to start writing C-like code in Perl, but as with any mature programming language, familiarity with the important libraries, and a feel for writing elegant and efficient code take many years to develop.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

In reply to Re: Whats the average time taken to learn Perl? by tobyink
in thread Whats the average time taken to learn Perl? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-26 00:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found