Created
April 6, 2019 03:46
-
-
Save nvinayshetty/405948102fa31f37dc5a06a6701ce108 to your computer and use it in GitHub Desktop.
Example of a dot file
This file contains 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
digraph matterStateMachine { | |
Solid -> Liquid [label="OnMelted"] | |
Liquid -> Solid [label="OnFrozen"] | |
Liquid -> Gas [label="OnVaporized"] | |
Gas -> Liquid [label="OnCondensed"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment