File: 0030.txt

package info (click to toggle)
libgraph-easy-perl 0.76-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,264 kB
  • sloc: perl: 23,869; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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: bold; } [ printf ] 	# bold red edge!

[ execute ] -> { color: red; } [ compare ] { shape: rect; background: #c1b2ff; }