(Latest Revision: Sun Apr 21 01:41:34 PDT 2002 ) sample.out

sample.out


#######################################################
empty
The list is empty.
#######################################################
insert 1 Come
"Come" has been placed in position 1 of the list.
#######################################################
insert 2 listen
"listen" has been placed in position 2 of the list.
#######################################################
insert 3 story
"story" has been placed in position 3 of the list.
#######################################################
insert 2 and
"and" has been placed in position 2 of the list.
#######################################################
print
The list contains ... 

"Come"
"and"
"listen"
"story"

#######################################################
insert 4 to
"to" has been placed in position 4 of the list.
#######################################################
insert 5 my
"my" has been placed in position 5 of the list.
#######################################################
insert 7 'bout
"'bout" has been placed in position 7 of the list.
#######################################################
insert 8 a
"a" has been placed in position 8 of the list.
#######################################################
insert 9 man
"man" has been placed in position 9 of the list.
#######################################################
insert 10 named
"named" has been placed in position 10 of the list.
#######################################################
insert 11 Jed.
"Jed." has been placed in position 11 of the list.
#######################################################
print
The list contains ... 

"Come"
"and"
"listen"
"to"
"my"
"story"
"'bout"
"a"
"man"
"named"
"Jed."

#######################################################
retrieve 1
"Come" has been retrieved from position 1 of the list.
#######################################################
retrieve 3
"listen" has been retrieved from position 3 of the list.
#######################################################
retrieve 4
"to" has been retrieved from position 4 of the list.
#######################################################
retrieve 11
"Jed." has been retrieved from position 11 of the list.
#######################################################
empty
The list is not empty.
#######################################################
length
The list contains 11 elements.
#######################################################
delete 5
"my" has been removed from position 5 of the list.
#######################################################
delete 5
"story" has been removed from position 5 of the list.
#######################################################
delete 8
"named" has been removed from position 8 of the list.
#######################################################
delete 7
"man" has been removed from position 7 of the list.
#######################################################
delete 6
"a" has been removed from position 6 of the list.
#######################################################
delete 5
"'bout" has been removed from position 5 of the list.
#######################################################
length
The list contains 5 elements.
#######################################################
print
The list contains ... 

"Come"
"and"
"listen"
"to"
"Jed."

#######################################################
empty
The list is not empty.
#######################################################
stop
All done.  Good bye.
#######################################################