Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: my within brackets

by ikegami (Patriarch)
on Oct 15, 2021 at 14:00 UTC ( [id://11137583]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $x = 4;         # Scalar assignment operator (sassign)
    ($x) = 4;       # List assignment operator   (aassign)
    ...
    
    @a = ;          # Illegal
    @a = ();        # Stub operator
    
  2. or download this
    my ($x) = 4;    # Same as: (my $x) = 4;
    
    ...
    use Mod my();   # Same as: use Mod ();
    
    @a = my();      # Same as: @a = ();
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (7)
As of 2024-03-28 08:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found