The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
/* vim:syntax=dot */
digraph inheritance {
    graph [splines=true,model=subset,ratio=auto];
    node [shape=ellipse];
    edge [];

    [% FOR class IN inheritance.keys %]
        [% simplify( class ) %] [ label="[% class %]" ];
    [%- END %]
    [% FOR left IN inheritance.keys -%]
        [%- SET child = simplify( left ) -%]
        [% FOR parent IN inheritance.$left %]
            [%- child %] -> [% simplify( parent ) %];
        [% END %]
    [%- END %]
}