pub fn add_all(
machine: &mut Machine,
program: Rc<RefCell<dyn Program>>,
console: Rc<RefCell<dyn Console>>,
storage: Rc<RefCell<Storage>>,
)
Expand description
Adds all program editing commands against the stored program
to the machine
, using
console
for interactive editing and using storage
as the on-disk storage for the programs.