Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: What am I not understanding about $,

by BrowserUk (Patriarch)
on May 04, 2016 at 08:32 UTC ( [id://1162164]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $output = join '', $array[2], $array[4];
    
  2. or download this
    my $output = join( '', $array[2], $array[4] );
    
  3. or download this
    print( "$output\n" );
    
  4. or download this
    print( $output . "\n" );
    
  5. or download this
    print( join( '', $output, "\n" ) );
    
  6. or download this
    my $output2 = join( '', $output, "\n" );
    print( $output2 );
    
  7. or download this
    my @array =
        (
    ...
    my $output = join( '', $array[2], $array[4] );
    my $output2 = join( '', $output, "\n" );
    print( $output2 );
    

Log In?
Username:
Password:

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

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

    No recent polls found