clust.gv 256 B

12345678910111213141516171819202122
  1. digraph G {
  2. subgraph cluster_0 {
  3. label = "hello world";
  4. a -> b;
  5. a -> c;
  6. color = hot_pink;
  7. }
  8. subgraph cluster_1 {
  9. label = "MSDOT";
  10. style= "dashed";
  11. color=purple;
  12. x -> y;
  13. x -> z;
  14. y -> z;
  15. y -> q;
  16. }
  17. top -> a;
  18. top -> y;
  19. y -> b;
  20. }