Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 181 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 181 Bytes

Stack kata

Implement a Stack class with the following public methods:

void push(Object object)
Object pop()

Stack should throw an exception if popped when empty.