Last active
March 14, 2024 09:52
-
-
Save izikeros/8ab7fef6120c0dcbae16774553287e36 to your computer and use it in GitHub Desktop.
[Graphviz example] directed graph with labels on the edges #graphviz
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
# 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