Skip to content

Instantly share code, notes, and snippets.

@passcod
Created June 27, 2012 23:21
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 passcod/3007548 to your computer and use it in GitHub Desktop.
Save passcod/3007548 to your computer and use it in GitHub Desktop.
pippo - Exploring meta structures
digraph pippo {
Node1 -> Relation1;
Relation1 -> Node2;
Relation1 [shape=square];
Relation1 [color=blue];
MetaNode1 -> MetaNode2 [color=grey];
MetaNode2 -> Node1 [color=grey];
MetaNode1 -> Node2 [color=grey];
MetaNode3 -> Relation1 [color=grey];
MetaNode1 [color=grey];
MetaNode2 [color=grey];
MetaNode3 [color=grey];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment