// CSE 373, Winter 2013, Marty Stepp // This client program uses our stack class. public class Lecture07Main { public static void main(String[] args) { Stack s = new ArrayStack(); s.push(42); s.push(-17); s.push(29); s.push(5); s.push(5983275); s.push(1234); while (!s.isEmpty()) { System.out.println(s.pop()); } // System.out.println(s.pop()); // EmptyStackException } }