You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
325 B
Plaintext
13 lines
325 B
Plaintext
digraph G {
|
|
|
|
foo [label="foo.txt",fillcolor="#aef9a5",style=filled]
|
|
bar [label="bar.txt",fillcolor="#aef9a5",style=filled]
|
|
wscript [label="wscript",fillcolor="#aef9a5",style=filled]
|
|
foobar [label="foobar.txt",fillcolor="#aef9a5",style=filled]
|
|
wscript -> foo;
|
|
wscript -> bar;
|
|
foo -> foobar;
|
|
bar -> foobar;
|
|
}
|
|
|