From 65f8b8a07daba47520914097fce8b041fbb7dc2e Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Fri, 23 Jul 2021 16:52:57 +0200 Subject: [PATCH] Add sample images for .dot and .circo --- images/sample-graph.circo | 8 ++++++++ images/sample-graph.dot | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 images/sample-graph.circo create mode 100644 images/sample-graph.dot diff --git a/images/sample-graph.circo b/images/sample-graph.circo new file mode 100644 index 0000000..4fe87a8 --- /dev/null +++ b/images/sample-graph.circo @@ -0,0 +1,8 @@ +digraph G { + A -> B; + B -> C; + B -> D; + C -> E; + C -> F; + C -> G; +} diff --git a/images/sample-graph.dot b/images/sample-graph.dot new file mode 100644 index 0000000..4fe87a8 --- /dev/null +++ b/images/sample-graph.dot @@ -0,0 +1,8 @@ +digraph G { + A -> B; + B -> C; + B -> D; + C -> E; + C -> F; + C -> G; +}