Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^2: hmm - - - something has changed in perl (from 5.34 to 5.36

by Tux (Canon)
on Nov 24, 2022 at 10:12 UTC ( [id://11148350]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use 5.026000;
    use warnings;
    ...
    GetOptions (
        "B|before=i" => \my $before, # An integer argument is required
        ) or die "User-friendly message\n");
    
  2. or download this
    GetOptions (
        "B|before:42" => \my $before, # An integer argument is optional an
    +d defaults to 42 when -B used without arg
        ) or die "User-friendly message\n");
    
  3. or download this
    GetOptions (
        "B|before:42" => \(my $before = 2),
        ) or die "User-friendly message\n");
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-20 00:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found