Hi, everyone. I am trying to achieve the effect like the following C code:
#define A 1,2,3
void f(int x, int y, int z) {
}f(A); Yet the macro in Julia always returns a single expression. Is it possible to do this?
Hi, everyone. I am trying to achieve the effect like the following C code:
#define A 1,2,3
void f(int x, int y, int z) {
}f(A); Yet the macro in Julia always returns a single expression. Is it possible to do this?