lang-bootstrap/05/main.c
2022-02-07 16:33:27 -05:00

11 lines
155 B
C

#define funciton( h, \
i, j ) h##ello * 2 * i##ello * j##ello
int hello = 7;
int main() {
int x = funciton(
h,
h,
h
);
int y = funciton(h,h,h);
}