Closed
Description
Do you have a plan to rebuild the macros based on the proc_macro?
Those are sweeter.
#[cached(Fib)]
fn fib(n: u64) -> u64 {
if n == 0 || n == 1 {
return n;
}
fib(n-1) + fib(n-2)
}
Metadata
Metadata
Assignees
Labels
No labels