cfad47cfa3/t3compiler/tads3/test/data/circ.c
| 4b825dc642cb6eb9a060e54bf8d69288fbee4904 | cfad47cfa334b206c65f22086bcc5d63e6f70944 | ||
|---|---|---|---|
1 | #define A(x) B(x+1) | ||
2 | #define B(x) A(x+2) | ||
3 | |||
4 | "A(A(3)) = "; A(A(3)); | ||
5 | "A(5) = "; A(5); | ||
6 | "B(7) = "; B(7); | ||
7 | "A(3)B(9) = "; A(3)B(9); | ||
8 | "A(4)A(6)A(8) = "; A(4)A(6)A(8); | ||
9 | |||
10 | "A(A(A(5))) = "; A(A(A(5))); | ||
11 | |||
12 | "A(B(A(7))) = "; A(B(A(7))); |
Download diff