Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Perl archeology: Need help in refactoring of old Perl code that does not use strict

by 1nickt (Canon)
on Nov 14, 2017 at 19:53 UTC ( [id://1203421]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict; use warnings;
    use Foo qw/ bar /;
    
    print bar('baz');
    __END__
    
  2. or download this
    package Foo;
    use strict; use warnings;
    ...
    sub bar { return uc shift }
    
    1;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-19 20:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found