Skip to content

Instantly share code, notes, and snippets.

@ae6rt
Created July 1, 2013 16:12
Show Gist options
  • Save ae6rt/5902241 to your computer and use it in GitHub Desktop.
Save ae6rt/5902241 to your computer and use it in GitHub Desktop.
DOT specification enroute to becoming at PTL program
digraph G {
rankdir=LR;
main [shape=box];
main -> f -> g; // main calls f which calls g
f -> f [style=dotted] ; // f is recursive
f -> h; // f calls h
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment