<(common.inc.plp)><: Html({ title => 'perl version cheat sheet', version => 'v1.0', keywords => [qw' perl version feature features comparison sheet cheat overview summary '], stylesheet => [qw'light dark red'], data => ['perl.inc.pl'], }); :>

Perl cheat sheets

<: my $info = do 'perl.inc.pl' or die $@ // $!; for my $ver (reverse sort keys %{$info}) { print '
'."\n"; printf '

%vd

'."\n", $ver; printf '
%s
%s', Entity(@{$_}), '
' for @{ $info->{$ver} }; print "
\n"; print "
\n\n"; }