Esempio n. 1
0
def main():
    s = Stack()
    print('Empty?: %s' % s.IsEmpty())
    s.Push('Dazed and Confused')
    s.Push('I Can\'t Quit You Baby')
    s.Push('Wearing and Tearing')
    print(s.Peek())
    print(s.Peek())
    print('Size: %s' % s.Size())
    s.Pop()

    print('Size: %s' % s.Size())