Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^3: require "shared.pl" with use strict;

by choroba (Cardinal)
on Feb 19, 2015 at 17:27 UTC ( [id://1117244]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package Shared;
    use warnings;
    ...
    }
    
    __PACKAGE__
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    for my $pair (test_list()) {
        print "@$pair\n";
    }
    
  3. or download this
    package Shared_OO;
    use warnings;
    ...
    
    
    __PACKAGE__
    
  4. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    for my $pair ($o->test_list) {
        print "@$pair\n";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-03-28 12:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found