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 strict; | |
use warnings; | |
use Test::More import => ['!pass'], 'no_plan'; | |
use Dancer ':syntax'; | |
use Dancer::Test; | |
setting template => 'template_toolkit'; | |
ok(get('/' => sub { template root => {who => 'root'} }), 'root route'); | |
route_exists [GET => $_] for qw( / ); |
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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use Text::CSV; | |
my @columns = ''; | |
my $region = ''; | |
my $valore = ''; | |
my @lac1 = ''; | |
my @lac2 = ''; |
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 strict; | |
use warnings; | |
use ExtUtils::MakeMaker; | |
WriteMakefile( | |
NAME => 'dario', | |
AUTHOR => q{YOUR NAME <[email protected]>}, | |
VERSION_FROM => 'lib/dario.pm', | |
ABSTRACT => 'YOUR APPLICATION ABSTRACT', | |
($ExtUtils::MakeMaker::VERSION >= 6.3002 |
NewerOlder