Coccinelle release 1.0.0-rc13
[bpt/coccinelle.git] / demos / hello / hello-ocaml.cocci
CommitLineData
d6ce1786
C
1@main@
2type T;
3parameter list P;
4symbol printf;
5expression E;
6position p;
7@@
8
9T main(P) {
10 printf@p(E);
11 ...
12}
13
14@script:ocaml@
15p << main.p;
16@@
17
18Printf.printf "Hello at: %d" (List.hd p).Coccilib.line