Created
September 7, 2016 00:00
-
-
Save bwoods/e25c63e6c28618e2f0d24e707ab3af7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph { | |
ranksep=.75 | |
" " // end node | |
{ | |
node [shape=plaintext, fontsize=12] | |
1973 -> 1983 -> 1990 -> 1996 -> 2000 -> 2001 -> 2004 -> 2005 -> 2010 -> 2011 -> 2014 | |
"ML"; "C++"; "Standard ML"; "OCaml"; "C#"; D; Scala; "F#"; Rust; Ceylon; Kotlin; Swift | |
} | |
{ rank = same; 1973; ML } | |
{ rank = same; 1983; "C++" } | |
{ rank = same; 1990; "Standard ML" } | |
{ rank = same; 1996; OCaml } | |
{ rank = same; 2000; "C#" } | |
{ rank = same; 2001; D } | |
{ rank = same; 2004; Scala } | |
{ rank = same; 2005; "F#" } | |
{ rank = same; 2010; Rust } | |
{ rank = same; 2011; Ceylon } | |
{ rank = same; 2011; Kotlin } | |
{ rank = same; 2014; Swift } | |
ML -> "C++" | |
ML -> "F#" | |
ML -> Rust | |
ML -> Scala | |
ML -> "Standard ML" | |
"C++" -> "C#" | |
"C++" -> D | |
"C++" -> Rust | |
"Standard ML" -> OCaml | |
"Standard ML" -> Rust | |
"Standard ML" -> Scala | |
OCaml -> "F#" | |
OCaml -> Scala | |
OCaml -> Rust | |
"C#" -> D | |
"C#" -> "F#" | |
"C#" -> Kotlin | |
"C#" -> Rust | |
"C#" -> Swift | |
D -> Swift | |
"F#" -> "C#" | |
Scala -> Ceylon | |
Scala -> "F#" | |
Scala -> Kotlin | |
Rust -> Swift | |
Swift -> Rust | |
"C++" -> " " | |
Rust -> " " | |
Swift -> " " | |
Ceylon -> " " | |
Kotlin -> " " | |
"Standard ML" -> " " | |
"F#" -> " " | |
"D" -> " " | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment