Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: If you believe in Lists in Scalar Context, Clap your Hands

by ikegami (Patriarch)
on Oct 23, 2008 at 22:55 UTC ( [id://719187]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $r = 'a'..'z' ;            # Case 4 -- error
    
  2. or download this
    $r = (@r, @r) ;
    $v = (%r, %r) ;
    
  3. or download this
    use strict;
    use warnings;
    ...
    my $r1 = ( print_context(), print_context() );
    # Void
    # Scalar
    
  4. or download this
    my $r2 = sub { ( print_context(), print_context() ) }->();
    # Scalar
    # Scalar
    
  5. or download this
    $r = () = 1..27 ;
    

Log In?
Username:
Password:

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

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

    No recent polls found