#import @interface Stack : Object { StackLink *top; unsigned int size; } - free; - push: (int) anInt; - (int) pop; - (unsigned int) size; @end