source: trunk/presentation-langages/article/lang_call.txt @ 330

Last change on this file since 330 was 329, checked in by nanardon, 13 years ago
  • split files to split beamer/article generation
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.0 KB
Line 
1/* $Id$ */
2
3digraph test123 {
4    c;
5    cpp [label="c++"];
6    fortran;
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    cpp -> c;
21    c -> fortran;
22    fortran -> c;
23    perl -> c;
24    c -> perl;
25    idl -> c;
26    idl -> cpp;
27    idl -> csharp;
28    idl -> fortran;
29    idl -> java;
30    c -> idl;
31    java -> c;
32    java -> cpp;
33    java -> fortran;
34    python -> c;
35    haskell -> c;
36    c -> python;
37    ruby -> c;
38    /* c -> ruby */
39    scilab -> fortran;
40    scilab -> c;
41    scilab -> cpp;
42    matlab -> c;
43    matlab -> cpp;
44    matlab -> fortran;
45    r -> c;
46    r -> cpp;
47    r -> fortran;
48    ocaml -> c;
49/*
50    a -> b -> c;
51    a -> {x y};
52    b [shape=box];
53    c [label="hello\nworld",color=blue,fontsize=24,
54      fontname="Palatino-Italic",fontcolor=red,style=filled];
55    a -> z [label="hi", weight=100];
56    x -> z [label="multi-line\nlabel"];
57    edge [style=dashed,color=red];
58    b -> x;
59    {rank=same; b x}
60*/
61}
Note: See TracBrowser for help on using the repository browser.