Test 分列: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
<graphviz>
<graphviz>
graph 分列 {
digraph structs {
rankdir=LR;
    node [shape=record];
 
    struct1 [label="<f0> left|<f1> mid\ dle|<f2> right"];
A [shape=record; label="{ <1> Hi | <2> Hello | <3> Why }"]
    struct2 [label="<f0> one|<f1> two"];
B [shape=record; label="{ <4> | <5> | <5> }"]
    struct3 [label="hello\nworld |{ b |{c|<here> d|e}| f}| g | h"];
A:1 -- B:4
    struct1:f1 -> struct2:f0;
A:2 -- B:5
    struct1:f2 -> struct3:here;
A:3 -- B:6
}
}
</graphviz>
</graphviz>