macro_rules! prepare {
(@output ($dol:tt)) => { ... };
(@normal ($dol:tt)) => { ... };
(@interactive ($dol:tt)) => { ... };
() => { ... };
(?) => { ... };
}Expand description
Prepare useful macros.
prepare!();: default (all input scanner (sc!,sv!) + buf print (pp!,dg!))prepare!(?);: interactive (line scanner (scln!) + buf print (pp!,dg!))