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 school_test{ | |
label = "Where does the education happen?"; | |
nodesep=1.2; | |
node [shape=box]; | |
overlap=false; | |
"School" -> "Test"; | |
"Test" -> "School"; | |
} | |
And if it is saved as a .txt, .gv, whatever, then it can be compiled with: |
NewerOlder