pub trait Stack: MovingTurtle { // Required methods fn push(&mut self); fn pop(&mut self); }
Push the current state of this turtle onto a stack.
Pop the current state of this turtle onto a stack.