Guest User

Untitled

a guest
Jul 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. digraph {
  2.  
  3. node [shape=circle,fontsize=8,fixedsize=true,width=0.9];
  4. edge [fontsize=8];
  5. rankdir=LR;
  6.  
  7. "do" [shape="circle", style="filled", color="green"];
  8. "approved" [shape="circle", style="filled", color="red"];
  9.  
  10. "do" -> "approval";
  11. "approval" -> "approved";
  12. "approval" -> "do";
  13.  
  14. }
Add Comment
Please, Sign In to add comment