Created
May 25, 2009 12:11
-
-
Save JoergWMittag/117517 to your computer and use it in GitHub Desktop.
The Family Tree of the Reia Programming Language
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 Reia { | |
Planner -> Prolog [label="Logic Programming"]; | |
Planner -> Actors [label="Carl Hewitt"]; | |
Prolog -> Erlang [label="Syntax, Semantics"]; | |
Erlang -> Reia [label="Execution and Concurrency Semantics"]; | |
Planner -> "Smalltalk-71" [label="Pattern-directed Execution"]; | |
"Smalltalk-71" -> Actors [label="Message-directed Execution"]; | |
Actors -> Erlang [label="Execution and Concurrency Semantics"]; | |
Actors -> Reia [label="Execution and Concurrency Semantics"]; | |
"Smalltalk-71" -> Smalltalk [label="Object Semantics"]; | |
Smalltalk -> Ruby [label="Object Semantics"]; | |
Ruby -> Reia [label="Object Semantics"]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment