Vocabularygraphviz.
notationInputsOutputsWord descriptionShorthand for
add-path. Meant to be a Factor replacement for the DOT language's more verbose path notation.
ExamplesInstead of writing
<graph>
1 2 --
2 3 --
3 4 --
you can write
<graph>
{ 1 2 3 4 } ~--
whereas in the DOT language you'd write
graph {
1 -- 2 -- 3 -- 4
}
See also--Definition