Skip to content

Instantly share code, notes, and snippets.

@steveroush
Created May 18, 2020 02:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steveroush/4458de9beac9a3be8af424316bf7930e to your computer and use it in GitHub Desktop.
Save steveroush/4458de9beac9a3be8af424316bf7930e to your computer and use it in GitHub Desktop.
digraph G {
layers="local:pvt:test:new:ofc";
node [style=filled,color=lightblue];
node1 [layer="pvt"];
node2 [layer="all",color=red];
node3 [layer="pvt:ofc"]; /* pvt, test, new, and ofc */
node2 -> node3 [layer="pvt:all"]; /* same as pvt:ofc */
node2 -> node4 [layer=3]; /* same as test */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment