class Stack { func init() { self._stack = []; } func push(element) { self._stack.push(element); } func pop() { self._stack.pop(); } func size() { } }