Macro fact

Source
macro_rules! fact {
    ((= $($arg:tt)*)) => { ... };
    ($a:tt) => { ... };
}