The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
digraph Perl
{
graph [ rankdir="TB" ]
node [ shape="oval" ]
edge [ color="grey" ]

subgraph "cluster_1"
{
graph [ bgcolor="cornflowerblue" label="Locale" rankdir="TB" ]
node [ shape="oval" ]
edge [ color="grey" ]

"Solar system"
"Earth"
}

subgraph "cluster_2"
{
graph [ bgcolor="lightblue" label="Creatures" rankdir="TB" ]
node [ shape="oval" ]
edge [ color="grey" ]

"Great"
"Small"
}
"Solar system" -> "Earth" [ arrowhead="diamond" label="" ]
"Great" -> "Small" [ arrowhead="odot" label="" ]
}