in reply to variable scopes in Excel::Writer::XLSX
use strict; use warnings; use Excel::Writer::XLSX; my $file = (@ARGV) ? 'perl_bug.xlsx' : 'perl_good.xlsx'; my $book = Excel::Writer::XLSX->new($file); my $worksheet = $book->add_worksheet(); $worksheet->write( 0, 0, 'Hi Excel!' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: variable scopes in Excel::Writer::XLSX
by johnrcomeau (Novice) on May 25, 2013 at 03:11 UTC |