aboutsummaryrefslogtreecommitdiff
path: root/images/example.dot
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2020-07-15 15:26:24 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2020-07-15 15:26:24 +0300
commit083fa85ee5301f3e330510e7ea1a279d4f47c208 (patch)
treee94872a6d30d472c9a310d4e9deed78d8f2736a1 /images/example.dot
parent09339ddae33acc8ceaaf84ef8154da92d76985af (diff)
Updatev1.0.0
Diffstat (limited to 'images/example.dot')
-rw-r--r--images/example.dot10
1 files changed, 10 insertions, 0 deletions
diff --git a/images/example.dot b/images/example.dot
new file mode 100644
index 0000000..9bf46f3
--- /dev/null
+++ b/images/example.dot
@@ -0,0 +1,10 @@
+digraph {
+ Start[color="blue"]
+ Start -> A[label="Start → A"];
+ Start -> B[label="Start → B"];
+ A -> C[label="A → C"];
+ B -> D[label="B → D"];
+ C -> D[label="C → D"];
+ C -> Finish[label="C → Finish"];
+ D -> Finish[label="D → Finish"];
+} \ No newline at end of file