Undo/Redo1/11
Concept

Stacks

Today you're learning Stacks: a data structure apps use when the most recent thing should come back first.

You'll learn them by building the history system inside an editor: the part that makes Undo and Redo work.

First you'll build the simple version that only remembers the current text. It will work until the user wants to go backward.

Then the editor will need memory, and stacks will become the fix.

You can keep learning as a guest, but sign in with GitHub on the home page if you want your progress saved.