Modern Core Perl
by Dave Cross on Nov 13, 2011
- 6,498 views
A presentation on Modern Core Perl that I gave at the London Perl Workshop on 12th November 2011
A presentation on Modern Core Perl that I gave at the London Perl Workshop on 12th November 2011
Statistics
- Favorites
- 4
- Downloads
- 60
- Comments
- 1
- Embed Views
- Views on SlideShare
- 2,024
- Total Views
- 6,498




use 5.010;
my $t;
my $c;
my $t//='test';
main($t);
sub main{
say 'Hi '.$_[0];
}
sub test{
...
} 4 months ago Reply