# L-21 MCS 260 : a stack
"""
This module implements a stack as a list,
as used by stack_of_numbers and its _io,
hidden from the user of this stack.
"""
STACK = []
