WordList (arraylist).java

The following text was written to the standard output stream when the ? program was executed from IntelliJ.


>>> help
HELP - display a menu of commands
DISPLAY - display the list of numbers
PRINT - print a String (FIRST;LAST;nth)
SWAP - exchange two elements (nth;mth)
ADD - add a String to the list (FIRST;LAST)
EXIT - terminate execution of the program
>>> display
dog
boat
computer
screen
wire
cart
board
water
boil
float
high
sit
>>> print first
dog
>>> print last
sit
>>> print 3
computer
>>> print 9
boil
>>> swap 1 2
>>> display
boat
dog
computer
screen
wire
cart
board
water
boil
float
high
sit
>>> swap 5 6
>>> display
boat
dog
computer
screen
cart
wire
board
water
boil
float
high
sit
>>> help
HELP - display a menu of commands
DISPLAY - display the list of numbers
PRINT - print a String (FIRST;LAST;nth)
SWAP - exchange two elements (nth;mth)
ADD - add a String to the list (FIRST;LAST)
EXIT - terminate execution of the program
>>> add first doggo
>>> add last mitten
>>> showwords
### Unrecognizable command: showwords
>>> display
doggo
boat
dog
computer
screen
cart
wire
board
water
boil
float
high
sit
mitten
>>> exit