Created
March 22, 2017 20:38
-
-
Save jkeam/cbf6cb2094d3ebca3a77e751a0fdb939 to your computer and use it in GitHub Desktop.
Zoos and Animals
This file contains hidden or 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 SimplestDiagrams { | |
Zoo1 | |
"Zoo1" -> "Cat" | |
"Zoo1" -> "Dog" | |
Zoo2 | |
"Zoo2" -> "Cat" | |
"Zoo2" -> "Crow" | |
Zoo3 | |
"Zoo3" -> "Owl" | |
"Zoo3" -> "Dog" | |
Animals [ | |
shape=record | |
label="{Animals|id\ntype=[cat, crow, dog, owl]\nzooId}" | |
] | |
Zoo [ | |
shape=record | |
label="{Zoo|id}" | |
] | |
Zoo -> Animals [arrowhead=crow] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment