cfad47cfa3/t3compiler/tads3/test/data/circ2.c
Commiter: Nikos Chantziaras
Author: Nikos Chantziaras
Revision: cfad47cfa3
File Size: 182 Bytes
(June 01, 2009 20:54 UTC) Almost 3 years ago
Initial commit.
#define CIRCULAR_A(foo) CIRCULAR_B(foo*A) #define CIRCULAR_B(foo) CIRCULAR_A(foo*B) "circular_a(100): "; CIRCULAR_A(100); "circular_a(circular_b(50)): "; CIRCULAR_A(CIRCULAR_B(50)); |