Guest User

Untitled

a guest
Jan 6th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 0.38 KB | None | 0 0
  1. digraph G {
  2.         a [label="A", style="filled", fillcolor="yellow"];
  3.         b [label="B", style="filled", fillcolor="yellow"];
  4.         c [label="C", style="filled", fillcolor="yellow"];
  5.         d [label="D", style="filled", fillcolor="yellow"];
  6.         a->c [label="5"];
  7.         b->b [label="1"];
  8.         c->b [label="3"];
  9.         d->b [label="2"];
  10.         d->c [label="8"];
  11. }
Add Comment
Please, Sign In to add comment