Einführung Python Graphviz einfache Diagrammbeispiele
graph graphname {
rankdir=LR; //Rank Direction Left to Right
a -- b;
b -- c;
b -- d;
d -- a;
}
Happy Hare