rec.dot 284 B

12345678910111213
  1. digraph "rec"
  2. {
  3. node [shape=Mrecord];
  4. 4 [label="hello\nworld |{ b |{c|d|e}| f}| g | h"];
  5. 5 [label="hello\nworld |{ {b1|b2} |{c|d|e}| f}| g | h"];
  6. 6 [label="hello\nworld |{ {1|2} |{c|d|e}| f}| g | h"];
  7. 7 [label="hello\nworld |{ {1|2} |{c|d|e}| {B|C}}| g | h"];
  8. 4->5->6;
  9. 4->7;
  10. }