Skip to content

Instantly share code, notes, and snippets.

@izikeros
Last active March 14, 2024 09:52
Show Gist options
  • Save izikeros/8ab7fef6120c0dcbae16774553287e36 to your computer and use it in GitHub Desktop.
Save izikeros/8ab7fef6120c0dcbae16774553287e36 to your computer and use it in GitHub Desktop.
[Graphviz example] directed graph with labels on the edges #graphviz
# see: https://stackoverflow.com/a/1806873/3247880
digraph G {
a -> b [ label=" a to b" ];
b -> c [ label=" another label"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment