First time DOT/GraphViz user here. I have the following graph
digraph G {
rankdir=LR;
"START" -> "A" -> "B" -> "A" -> "C" -> "A" -> "END"
"START" -> "A" -> "C" -> "A" -> "B" -> "A" -> "END"
}
that gets rendered like this
whereas I'd like it to be rendered like this
How do I express that in DOT?


