×
The History of the Stack
Origin (1984): While the block-stacking mechanic is famous from Alexey Pajitnov's "Tetris", the concept of a "Stack" is fundamental to computer science.
The Data Structure
In programming, a Stack is a LIFO (Last In, First Out) structure. Think of a stack of plates; you can only take the top one off.
Stack Overflow
When a program runs out of memory in its call stack (often due to infinite recursion), it causes a "Stack Overflow" error. This is also the namesake of the world's most popular developer community.
Memory Management
In this game, clearing lines represents Garbage Collection—freeing up memory so your system doesn't crash!