Files
devops/perl/lib/Graph-Easy-0.76/t/in/8_optimize_bend.txt
2025-09-17 16:08:16 +08:00

19 lines
500 B
Plaintext

# Example from Graphviz extension
# http://www.wickle.com/wiki/index.php/Graphviz_extension
node { shape: circle; }
[ main ] { shape: rect; } # this is a comment
-> [ parse ]
-> [ execute ]
-> [ make_string ] { label: make a\n string; }
[ main ] ..> [ init ]
[ main ] -- Testlabel --> [ cleanup ]
[ init ] -> [ make_string ]
[ main ] == 100 times ==> { color: red; style: dashed; } [ printf ] # dashed red edge!
[ execute ] -> { color: red; } [ compare ] { shape: rect; background: #c1b2ff; }