mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-23 20:02:22 +00:00
27 lines
494 B
Plaintext
27 lines
494 B
Plaintext
digraph G {
|
|
ranksep = .75; size = "7.5,7.5";
|
|
rankdir="LR";
|
|
|
|
node [shape=plaintext];
|
|
|
|
{
|
|
1970, 1972; 1985; 1989; 1992; 1995; 2007;
|
|
"B";
|
|
}
|
|
|
|
{
|
|
node [shape=circle];
|
|
"Go";
|
|
}
|
|
|
|
{ rank = same; "1970"; "B"; }
|
|
{ rank = same; "1972"; "C"; }
|
|
{ rank = same; "1985"; "Squeak"; }
|
|
{ rank = same; "1989"; "NewSqueak"; }
|
|
{ rank = same; "1992"; "Alef"; }
|
|
{ rank = same; "1995"; "Limbo"; }
|
|
{ rank = same; "2007"; "Go"; }
|
|
|
|
"B" -> "C" -> "Squeak" -> "NewSqueak" -> "Alef" -> "Limbo" -> "Go";
|
|
}
|