X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/ae34f61b658a824a00ce2a619fa8736c001aa513..fc554ef8ffaab2f0a3daed89ae1a18d9c0e117af:/perl.plp diff --git a/perl.plp b/perl.plp index 4e6222d..6f2dd93 100644 --- a/perl.plp +++ b/perl.plp @@ -2,7 +2,7 @@ Html({ title => 'perl version cheat sheet', - version => '1.3', + version => '1.4', keywords => [qw' perl version feature features comparison sheet cheat overview summary @@ -16,13 +16,15 @@ Html({

The most significant features introduced for recent versions of the Perl scripting language. -Depending on desired compatibility you'll want to support a minimum of -v5.8 or -v5.14. -

- <: -my $info = do 'perl.inc.pl' or die $@ // $!; +my $info = Data('perl'); + +say "Depending on desired compatibility you'll want to support a minimum of"; +say join(' or ', map { + sprintf 'v%vd', $info->{$_}->{distrosum}, $_ +} v5.8, v5.20), '.'; +say '

'; + for my $vernum (reverse sort keys %{$info}) { my $verrow = $info->{$vernum}; defined $verrow->{unstable} and next unless exists $get{v}; @@ -51,7 +53,7 @@ for my $vernum (reverse sort keys %{$info}) { if ($attr->{feature}) { my $prefix = sprintf 'feature', $attr->{feature}; - my $title = join ', ', $prefix, $title // (); + $title = join ', ', $prefix, $title // (); } $desc .= sprintf ' (%s)', $title; }