#!/usr/local/bin/perl -wpush (@myList, "Hello");push (@myList, "World!");push (@myList, "How");push (@myList, "Are");push (@myList, "You?");while ( $index = pop(@myList) ){ print "Popping off stack: $index\n";}