Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^9: bug or curly bracket hell?

by Anonymous Monk
on Jan 25, 2023 at 16:58 UTC ( [id://11149875]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      open('conf', "$PATHconf") || die "can't open $PATHconf: $!\n";
      my @conf = <conf>;
    ...
        my $filename = "Output012023.xlsx";
        my $workbook = Excel::Writer::XLSX->new( $filename );
        open(FH, "<", "Debt.csv" ) or die;
    
  2. or download this
      open('conf', "$PATHconf") || die "can't open $PATHconf: $!\n";
      my @conf = <conf>;
    ...
        my $workbook = Excel::Writer::XLSX->new( $filename );
    
        open(FH, "<", "Debt.csv" ) or die;
    
  3. or download this
      foreach(@conf){
    
    ...
        # the reason for doing this weird thing
        my $t.   = "".$i;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-03-29 12:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found