Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: A twisty little maze of ampersands, all different

by kcott (Archbishop)
on Jun 09, 2021 at 06:49 UTC ( [id://11133683]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    perl -MO=Deparse,p -E 'sub one {1} sub two {2} say <ampersand-part>'
    
  2. or download this
    one&two      : say one(&two);
    &one&two     : say &one & two();
    &one&&&two   : say &one && &two;
    &&&one&&&two : &two if say $_ and &one;
    
  3. or download this
    use feature 'current_sub', 'bitwise', 'evalbytes', 'fc', 'postderef_qq
    +', 'say', 'state', 'switch', 'unicode_strings', 'unicode_eval';
    sub one {
    ...
    sub two {
        2;
    }
    
  4. or download this
    -e syntax OK
    

Log In?
Username:
Password:

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

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

    No recent polls found