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

Re: my $x or my ($x)

by strat (Canon)
on Apr 05, 2006 at 08:08 UTC ( [id://541302]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    open (my $FH, "<", $file) or die ...
    # reads the whole file, assigns first line to $headline
    ...
    # since the whole file is already read, there's nothing
    # more to be read, so the while block will never be executed
    while( my $line = <$FH> ) {
    
  2. or download this
    sub xxx {
      # error, must be my ($firstParam) = @_; if you don't want
      # to get the number of parameters but the first param
      my $firstParam = @_; 
    ...
    
  3. or download this
    my $x = reverse('abcdef');
    my ($y) = reverse('abcdef');
    print "x=$x\ny=$y\n";
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (2)
As of 2024-04-25 20:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found