CS1 Standard Demo Page

The following text was written to the standard output stream when the arraylistplay/WordListDemo.java program was executed from IntelliJ.

>>> help
HELP - display a menu of commands
DISPLAY - display the list of words
PRINT - print a word (FIRST;LAST;nth)
SWAP - exchange two elements (nth;mth)
ADD - add a word to the list (FIRST;LAST)
EXIT - terminate execution of the program
>>> display
Weather
Sun
Water
Wind
Computer
Temperature
House
Mouse
Energy
Latent
Heat
Flux
Bottle
>>> print first
Weather
>>> print last
Bottle
>>> print 3
Water
>>> print 10
Latent
>>> swap 5 7
>>> display
Weather
Sun
Water
Wind
House
Temperature
Computer
Mouse
Energy
Latent
Heat
Flux
Bottle
>>> swap 1 4
>>> display
Wind
Sun
Water
Weather
House
Temperature
Computer
Mouse
Energy
Latent
Heat
Flux
Bottle
>>> help
HELP - display a menu of commands
DISPLAY - display the list of words
PRINT - print a word (FIRST;LAST;nth)
SWAP - exchange two elements (nth;mth)
ADD - add a word to the list (FIRST;LAST)
EXIT - terminate execution of the program
>>> ;oirhef
### Unrecognizable command: ;oirhef
>>> display
Wind
Sun
Water
Weather
House
Temperature
Computer
Mouse
Energy
Latent
Heat
Flux
Bottle
>>> add first Warm
>>> add last Cool
>>> display
Warm
Wind
Sun
Water
Weather
House
Temperature
Computer
Mouse
Energy
Latent
Heat
Flux
Bottle
Cool
>>> exit