Add exercises

This commit is contained in:
Alex Hirsch
2020-10-06 12:34:06 +02:00
parent 3ef3f4957e
commit a0d503e8da
14 changed files with 163 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
digraph {
node [shape=box style=filled fillcolor=lightblue fontname="Roboto Mono" fontsize=12 ];
edge [style=dashed arrowhead=onormal];
app;
foo [label="libFoo.so"];
bar [label="libBar.so"];
baz [label="libBaz.so"];
app -> foo;
app -> bar;
app -> baz;
baz -> bar;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB