Created
July 9, 2012 11:53
-
-
Save ynonp/3076037 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.14; | |
use Spreadsheet::WriteExcel; | |
# Create the work book | |
my $workbook = Spreadsheet::WriteExcel->new('writer1.xls'); | |
my $ws = $workbook->add_worksheet(); | |
$ws->write('A1', 'Hello World'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment