Instantiates all REPL commands for the interactive machine and adds them to the `machine`.
(machine: &mut MachineBuilder)
| 117 | |
| 118 | /// Instantiates all REPL commands for the interactive machine and adds them to the `machine`. |
| 119 | pub fn add_interactive(machine: &mut MachineBuilder) { |
| 120 | machine.add_callable(ClearCommand::new(machine.actions())); |
| 121 | } |
| 122 | |
| 123 | #[cfg(test)] |
| 124 | mod tests { |
no test coverage detected