Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Vautrin's scratchpad

by Vautrin (Hermit)
on Jun 04, 2004 at 16:21 UTC ( [id://360976]=scratchpad: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
    sub foobar {
      print "foo$_[1]bar\n";
    }
    
  2. or download this
    Use of uninitialized value in concatenation (.) or string at - line 7.
    foobar
    
  3. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
        print "foobar\n";
      }
    }
    
  4. or download this
    #! /usr/bin/perl
    use strict;
    ...
      no warnings qw (uninitialized);
      print "foo$_[1]bar\n";
    }
    

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 admiring the Monastery: (5)
As of 2024-04-25 11:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found