X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/7db6546c031c5fd8167a487cbda66d35280ec7cf..cf5aaee63c5aa7eeae7e2e136e58e156841616a9:/perl.plp diff --git a/perl.plp b/perl.plp index a5ef991..131291e 100644 --- a/perl.plp +++ b/perl.plp @@ -2,7 +2,7 @@ Html({ title => 'perl version cheat sheet', - version => '1.2', + version => '1.3', keywords => [qw' perl version feature features comparison sheet cheat overview summary @@ -14,20 +14,24 @@ Html({ :>

Perl release summary

-

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. -

- +

The most significant features introduced for recent versions of the Perl +scripting language. <: my $info = do 'perl.inc.pl' or die $@ // $!; + +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}; say '
'; - say sprintf '

%vd %s

', $vernum, $verrow->{release}; + say sprintf '

%vd %s

', $vernum, $verrow->{release}; + say '
'; for (@{ $verrow->{new} }) { my ($topic, $desc, $attr) = @{$_}; if ($attr) { @@ -47,8 +51,9 @@ for my $vernum (reverse sort keys %{$info}) { $attr->{experimental}, $title; } if ($attr->{feature}) { - $title = sprintf('feature', $attr->{feature}) - . (defined $title && ", $title"); + my $prefix = sprintf 'feature', + $attr->{feature}; + $title = join ', ', $prefix, $title // (); } $desc .= sprintf ' (%s)', $title; }