c3c
c3c copied to clipboard
Named compile-time arguments
Is this a possibility?
macro foo($bar, $Type) {}
fn void bar() {
foo(.$bar = 1, .$Type = int);
}
Yes, that should work.
You can now test this on latest.
Looks good.