source: trunk/presentation-langages/images/lang_call.txt @ 355

Last change on this file since 355 was 334, checked in by revillet, 13 years ago
  • remove all links to C
  • add colors for most linked languages (red for C, blue for Fortran and C++)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 906 bytes
Line 
1/* $Id$ */
2
3digraph test123 {
4    c [color=red];
5    cpp [label="c++"] [color=blue];
6    fortran [color=blue];
7    perl;
8    idl;
9    java;
10    ruby;
11    python;
12    scilab;
13    csharp [label="c#"]
14    java;
15    haskell;
16    ocaml;
17    matlab;
18    r [label="R"];
19   
20    c -> fortran;
21//  c -> cpp
22    c -> perl;
23    idl -> cpp;
24    idl -> csharp;
25    idl -> fortran;
26    idl -> java;
27    c -> idl;
28    java -> cpp;
29    java -> fortran;
30//  c -> java;
31    c -> python;
32    scilab -> fortran;
33    scilab -> cpp;
34    matlab -> cpp;
35    matlab -> fortran;
36    r -> cpp;
37    r -> fortran;
38/*
39    a -> b -> c;
40    a -> {x y};
41    b [shape=box];
42    c [label="hello\nworld",color=blue,fontsize=24,
43      fontname="Palatino-Italic",fontcolor=red,style=filled];
44    a -> z [label="hi", weight=100];
45    x -> z [label="multi-line\nlabel"];
46    edge [style=dashed,color=red];
47    b -> x;
48    {rank=same; b x}
49*/
50}
Note: See TracBrowser for help on using the repository browser.